/* Base status panel styling */
.asset-status-panel {
    transition: all 0.2s ease;
}

/* Fresh status (< 24h) - green, no background */
.asset-status-fresh {
    background-color: transparent;
}

/* Recent status (24-48h) - yellow, subtle background */
.asset-status-recent {
    background-color: var(--mud-palette-warning-lighten) !important;
}

/* Stale status (48h-7d) - orange, subtle background */
.asset-status-stale {
    background-color: rgba(255, 152, 0, 0.12) !important; /* Orange with transparency */
}

/* Outdated status (>7d) - red, subtle background */
.asset-status-outdated {
    background-color: var(--mud-palette-error-lighten) !important;
}

/* Inactive status - subtle gray */
.asset-status-inactive {
    background-color: transparent;
}