.cookie-consent-banner {
    position: fixed;
    z-index: 100000;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: #0080c8;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    font-family: Roboto, sans-serif;
    padding: 20px 24px;
}

.cookie-consent-banner[hidden] {
    display: none !important;
}

.cookie-consent-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent-banner__text {
    min-width: 0;
    flex: 1 1 auto;
}

.cookie-consent-banner__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 8px;
    color: #fff;
}

.cookie-consent-banner__body {
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
    color: #fff;
}

.cookie-consent-banner__body a,
.cookie-consent-banner__body a:hover,
.cookie-consent-banner__body a:focus,
.cookie-consent-banner__body a:visited {
    color: #fff !important;
    text-decoration: underline !important;
}

.cookie-consent-banner__actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
}

.cookie-consent-banner__btn {
    border-radius: 999px !important;
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-family: Roboto, sans-serif !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    cursor: pointer;
    white-space: nowrap;
    min-width: 140px;
    box-shadow: none !important;
}

.cookie-consent-banner__btn--accept {
    background: #fff !important;
    color: #0080c8 !important;
    border: 2px solid #fff !important;
}

.cookie-consent-banner__btn--accept:hover,
.cookie-consent-banner__btn--accept:focus {
    background: #f3f8fc !important;
    color: #0075bd !important;
}

.cookie-consent-banner__btn--necessary {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

.cookie-consent-banner__btn--necessary:hover,
.cookie-consent-banner__btn--necessary:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

@media (max-width: 767px) {
    .cookie-consent-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
    }

    .cookie-consent-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-consent-banner__actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-consent-banner__btn {
        width: 100%;
        min-width: 0;
    }
}
