/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    notices.css
    Used to style page notices
    Created on : Jan 6, 2026, 10:26:03 p.m.
    Author     : Justin
*/

.notice-panel {
    max-width: 800px;                 /* limits width */
    margin: 40px auto;                /* center horizontally with spacing */
    padding: 20px 25px;               /* inner spacing */
    background: rgba(255, 255, 255, 0.05); /* subtle glassy effect */
    backdrop-filter: blur(10px);      /* glass effect */
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 5px solid #D3A417;  /* gold accent line */
    color: #fff;                      /* text color */
    font-family: Georgia, serif;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    border-radius: 12px;
    animation: fadeUpNotice 1s ease forwards; /* subtle entry animation */
}

.notice-panel h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #e7d9b1;                   /* gold heading */
}

.notice-panel p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Optional fade-up animation */
@keyframes fadeUpNotice {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .notice-panel {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .notice-panel h3 {
        font-size: 1.3rem;
    }
}