.ab-a5456de3-wrapper {
    width: 100%;
    z-index: 9999;
    position: relative;
    font-family: inherit;
}

.ab-a5456de3-fixed {
    position: fixed;
    top: 0;
    left: 0;
}

/* Push down content if body has fixed header */
body:has(.ab-a5456de3-fixed:not([style*="display: none"])) {
    padding-top: var(--ab-a5456de3-height, 50px);
}

.ab-a5456de3-container {
    background: linear-gradient(90deg, #008080 0%, #005555 100%);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-height: 50px;
}

.ab-a5456de3-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 30px; /* Space for close button */
}

.ab-a5456de3-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

.ab-a5456de3-desktop-text {
    display: inline;
}

.ab-a5456de3-mobile-text {
    display: none;
}

.ab-a5456de3-text-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ab-a5456de3-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.ab-a5456de3-btn {
    background-color: #FFD700;
    color: #333333;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.ab-a5456de3-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    color: #000;
}

.ab-a5456de3-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.ab-a5456de3-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

@media (max-width: 768px) {
    .ab-a5456de3-content {
        gap: 10px;
        flex-direction: column;
        padding-right: 20px;
    }
    
    .ab-a5456de3-text {
        font-size: 14px;
    }
    
    .ab-a5456de3-desktop-text {
        display: none;
    }
    
    .ab-a5456de3-mobile-text {
        display: inline;
    }
    
    .ab-a5456de3-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}