/**
 * Category Timer Notice Styles
 */
.fb-category-timer-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border: 1px solid #ffc107;
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    padding: 18px 20px;
    margin: 16px 0;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
    animation: fbCtnFadeIn 0.4s ease-out;
    width: 100%;
}

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

.fb-ctn-icon {
    flex-shrink: 0;
    color: #e65100;
    margin-top: 2px;
}

.fb-ctn-icon svg {
    width: 28px;
    height: 28px;
}

.fb-ctn-content {
    flex: 1;
}

.fb-ctn-message {
    margin: 0 0 4px 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #5d4037 !important;
    line-height: 1.4 !important;
}

.fb-ctn-schedule {
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #e65100;
    line-height: 1.4 !important;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .fb-category-timer-notice {
        padding: 14px 16px;
        gap: 10px;
        margin: 12px 0;
    }

    .fb-ctn-icon svg {
        width: 22px;
        height: 22px;
    }

    .fb-ctn-message {
        font-size: 14px;
    }

    .fb-ctn-schedule {
        font-size: 13px;
    }
}
