.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -200px;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: #0d1e67;
    color: #ffffff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    transition: bottom 0.4s ease;
}

.cookie-consent-banner.is-visible {
    bottom: 0;
}

.cookie-consent-text {
    flex: 1 1 320px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #7fb0ff;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #ffffff;
}

.cookie-consent-btn-solid {
    background: #007bfc;
    border-color: #007bfc;
    color: #ffffff;
}

.cookie-consent-btn-outline {
    background: transparent;
    color: #ffffff;
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-consent-actions {
        justify-content: center;
    }
}
