/* Event Banner Notification Styles */
.event-banners-container {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

.event-banner-notification {
    background: rgba(26, 26, 26, 0.98);
    color: #e5e5e5;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-banner-notification + .event-banner-notification {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.event-banner-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.event-banner-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.event-banner-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.event-banner-meta {
    font-size: 12px;
    opacity: 0.7;
    color: #a0a0a0;
}

.event-banner-link {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.event-banner-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.event-banner-close {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

.event-banner-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
        max-height: 100px;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .event-banner-notification {
        padding: 6px 12px;
    }

    .event-banner-content {
        flex-wrap: wrap;
        gap: 6px;
    }

    .event-banner-text {
        flex-basis: 100%;
    }

    .event-banner-link {
        padding: 5px 10px;
        font-size: 11px;
    }

    .event-banner-icon {
        font-size: 16px;
    }

    .event-banner-text strong {
        font-size: 12px;
    }

    .event-banner-meta {
        font-size: 10px;
    }

    .event-banner-close {
        font-size: 18px;
        width: 20px;
        height: 20px;
        margin-left: 8px;
    }
}
