.notification-bar {
    width: 100%;
    z-index: 9999;
    padding: 15px 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.notification-bar-top {
    position: relative;
    top: 0;
    left: 0;
}

.notification-bar-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
}

.notification-bar-top_content {
    position: relative;
    margin-bottom: 20px;
}

.notification-bar-sticky {
    position: fixed !important;
    top: 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.notification-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.notification-bar-message {
    flex: 1 1 auto;
    text-align: center;
}

.notification-bar-cta {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: inherit;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid currentColor;
}

.notification-bar-cta:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.notification-bar-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-bar-close:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-bar {
        padding: 12px 15px;
    }
    
    .notification-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .notification-bar-message {
        font-size: 14px;
    }
    
    .notification-bar-cta {
        padding: 6px 16px;
        font-size: 14px;
    }
}

/* Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.notification-bar-top {
    animation: slideDown 0.3s ease;
}

.notification-bar-bottom {
    animation: slideUp 0.3s ease;
}

/* Fix for homepage min-height conflict with fixed notification bars */
.page-wrapper {
    min-height: auto !important;
}

/* Add padding to body when top notification bar is visible */
body.has-top-notification-bar {
    /* padding-top: 80px !important; */
}

/* Adjust for mobile */
@media (max-width: 768px) {
    body.has-top-notification-bar {
        /* padding-top: 100px !important; */
    }
}
.flex.flex-col.items-center.justify-center.p-3.md\:p-4.rounded-lg .text-xs.mt-1.uppercase.opacity-80 {
    color: black;
}
.flex.justify-center.gap-2.md\:gap-3.flex-wrap {
    padding-bottom: 10px;
}