.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f8f8;
    padding: 20px;
    border-top: 1px solid #ccc;
    z-index: 9999;
}
.consent-banner__content {
    max-width: 800px;
    margin: 0 auto;
}
.consent-banner__option {
    margin-bottom: 10px;
}
.consent-banner__tooltip-wrapper {
    position: relative;
    display: inline-block;
}
.consent-banner__tooltip-icon {
    cursor: pointer;
    font-weight: bold;
    padding: 0 6px;
    color: #555;
}
.consent-banner__tooltip-text {
    display: none;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff8c4;
    color: #333;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 1rem;
    white-space: normal;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1000;
    width: 250px;
    text-align: center;
}
.consent-banner__tooltip-wrapper:hover .consent-banner__tooltip-text {
    display: block;
}
.consent-banner__actions {
    margin-top: 20px;
} 

.consent-banner__services,
.consent-banner__cookies {
    margin-top: 10px;
    padding-left: 20px;
}

.consent-banner__services li,
.consent-banner__cookies li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.consent-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
}

.consent-modal__overlay {
    background: rgba(0,0,0,0.6);
    position: absolute;
    width: 100%;
    height: 100%;
}

.consent-modal__content {
    background: #fff;
    padding: 30px;
    max-width: 600px;
    margin: 80px auto;
    border-radius: 10px;
    position: relative;
    z-index: 10001;
}

.consent-modal__service {
    margin-bottom: 20px;
}

#open-consent-modal {
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
}