.marquee-container {
    background-color: var(--danger);
    color: white;
    padding: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.marquee {
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .main-content {
        grid-template-columns: 2fr 1fr;
    }
}

.card {
    background: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.card-title {
    width: 100%;
    color: var(--dark-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.notice-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.notice-title {
    color: var(--warning);
    margin-bottom: 10px;
    font-weight: bold;
}

.notice-list { list-style-type: none; }
.notice-list li {
    padding: 8px 5px;
    border-bottom: 1px dashed #ddd;
}

.notice-list li:last-child { border-bottom: none; }


.pdf-box {
    margin-top: 20px;
    width: 100%;
}

.pdf-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: var(--light);
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pdf-item:hover {
    background-color: #d6eaf8;
    transform: translateX(5px);
}

.pdf-icon {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.5rem;
}

.guidelines-list {
    list-style-type: decimal;
    padding-left: 20px;
}

.guidelines-list li { margin-bottom: 10px; }

.sidebar .card {
    position: sticky;
    top: 50px;
}

.important-dates {
    margin-top: 20px;
    width: 100%;
}

.date-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.date-item table{ border: 1px solid var(--gray); }
.date-item table th, .date-item table td{ 
    padding: 5px; 
    border: 1px solid var(--gray);
}


.payLinks{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 5px;
}

.payLinks a{
    text-decoration: none;
    width: 100%;
    border-radius: 8px;
    background: var(--light);
    color: var(--dark-color);
    cursor: pointer;
    padding: 10px 7px;
    color: var(--dark-color);
    font-size: 550;
}

.payLinks a:hover{
    background: var(--danger);
    color: var(--white-color);
}