/**
 * Notice Box Styles for Important Messages
 * Used for JavaScript disabled warnings and other user notices
 */

.notice-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notice-box p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.notice-box p:first-child {
    margin-top: 0;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

.notice-box strong {
    font-weight: 600;
    font-size: 1.1em;
}

/* Alternative warning style (yellow/amber) */
.notice-box.warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-color: rgba(245, 87, 108, 0.3);
}

/* Alternative info style (blue) */
.notice-box.info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-color: rgba(79, 172, 254, 0.3);
}

/* Alternative success style (green) */
.notice-box.success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-color: rgba(67, 233, 123, 0.3);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .notice-box {
        background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
        border-color: rgba(102, 126, 234, 0.5);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    
    .notice-box.warning {
        background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
        border-color: rgba(220, 38, 38, 0.5);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notice-box {
        padding: 1rem;
        margin: 1rem 0;
        font-size: 0.95rem;
    }
}
