/* --- BOTTOM BANNER --- */
#boa-bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    color: #ffffff;
    padding: 15px 20px;
    z-index: 99999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: Arial, sans-serif;
}

#boa-bottom-banner.boa-hidden {
    display: none;
}

#boa-bottom-banner.boa-slide-up {
    transform: translateY(0);
}

#boa-bottom-banner.boa-slide-down {
    transform: translateY(100%);
}

.boa-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.boa-banner-text {
    font-size: 16px;
    font-weight: 500;
    flex-grow: 1;
}

.boa-banner-btn {
    background: #f7b500; /* Matching the yellow from the design */
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    white-space: nowrap;
    transition: background 0.3s;
}

.boa-banner-btn:hover {
    background: #d49a00;
}

#boa-banner-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-left: 15px;
}

/* --- TOAST NOTIFICATIONS --- */
#boa-toast-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.boa-toast {
    background: #ffffff;
    color: #333333;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    width: 300px;
    overflow: hidden;
    animation: boa-slide-in 0.5s forwards;
    font-family: Arial, sans-serif;
    position: relative;
    border-left: 4px solid #107c41; /* Matching the green from the design */
}

.boa-toast-content {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
}

.boa-toast-icon {
    font-size: 24px;
}

.boa-toast-text {
    font-size: 14px;
    line-height: 1.4;
}

.boa-toast-text small {
    color: #777;
    font-size: 11px;
}

/* Progress Bar */
.boa-toast-progress {
    height: 3px;
    background: #107c41;
    width: 100%;
    animation: boa-progress-bar 5s linear forwards;
}

/* Animations */
@keyframes boa-slide-in {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes boa-fade-out {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.9); }
}

@keyframes boa-progress-bar {
    from { width: 100%; }
    to { width: 0%; }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .boa-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .boa-banner-text {
        font-size: 14px;
    }
    
    #boa-banner-close {
        position: absolute;
        top: 5px;
        right: 10px;
    }

    #boa-toast-container {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        align-items: center;
    }

    .boa-toast {
        width: 100%;
        max-width: 350px;
    }
}