.notices-container {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: fit-content;
}

.notice-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

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

.notice-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.notice-item.notice-warning {
    border-left: 4px solid #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.notice-item.notice-info {
    border-left: 4px solid #0dcaf0;
    background: rgba(13, 202, 240, 0.1);
}

.notice-item.notice-success {
    border-left: 4px solid #198754;
    background: rgba(25, 135, 84, 0.1);
}

.notice-item.notice-danger {
    border-left: 4px solid #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.notice-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.notice-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: block;
}

.notice-date {
    font-size: 0.75rem;
    opacity: 0.7;
    float: right;
    margin-top: -0.25rem;
}

.notices-header {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .notices-container {
        margin-bottom: 2rem;
        padding: 0.75rem;
    }

    .notice-item {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}
