/* ============================================================================
   TENANT LIFECYCLE BANNERS
   Phase S1-C: Subscription Status Banners
   ============================================================================ */

/* Banner Container */
.lifecycle-banner {
    position: relative;
    width: 100%;
    padding: 16px 24px;
    margin-bottom: 24px;
    border-radius: 8px;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Info Banner (TRIAL - >3 days) */
.lifecycle-banner-info {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #3b82f6;
    color: #60a5fa;
}

[data-theme="cyber-mint"] .lifecycle-banner-info {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: #10b981;
    color: #34d399;
}

/* Warning Banner (TRIAL - ≤3 days) */
.lifecycle-banner-warning {
    background: rgba(251, 191, 36, 0.1);
    border-left-color: #fbbf24;
    color: #fcd34d;
}

[data-theme="inferno"] .lifecycle-banner-warning {
    background: rgba(251, 146, 60, 0.1);
    border-left-color: #fb923c;
    color: #fdba74;
}

/* Error Banner (PAST_DUE or SUSPENDED) */
.lifecycle-banner-error {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #ef4444;
    color: #f87171;
}

[data-theme="inferno"] .lifecycle-banner-error {
    background: rgba(220, 38, 38, 0.15);
    border-left-color: #dc2626;
    color: #ef4444;
}

/* Banner Content */
.lifecycle-banner-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lifecycle-banner-message {
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .lifecycle-banner {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 6px;
    }
}

/* Theme-specific adjustments */
[data-theme="stealth"] .lifecycle-banner {
    background: rgba(17, 24, 39, 0.8);
}

[data-theme="synthwave"] .lifecycle-banner-info {
    background: rgba(168, 85, 247, 0.1);
    border-left-color: #a855f7;
    color: #c084fc;
}

[data-theme="synthwave"] .lifecycle-banner-warning {
    background: rgba(236, 72, 153, 0.1);
    border-left-color: #ec4899;
    color: #f472b6;
}
