.language-selector {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom:20px;
}

.language-label {
    margin-right: 5px;
    font-weight: normal;
}

.language-dropdown-container {
    position: relative;
    display: inline-block;
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

#languageDropdown {
    padding-right: 20px;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 160px;
}

.dropdown-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    border: none !important;
  }

.gdpr-content {
    padding: 20px;
}


.gdpr-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    pointer-events: none; /* Disable clicks */
}

.gdpr-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: black;
    text-align: center;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.gdpr-popup p {
    text-align: left;
}

.gdpr-popup li {
    text-align: left;
}

.gdpr-popup.show, .gdpr-overlay.show {
    display: block;
}

.gdpr-popup-content {
    max-width: 600px;
    margin: 0 auto;
}

.gdpr-button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.gdpr-button-container .gdpr-btn {
    padding: 20px 10px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.gdpr-btn {
    border-radius: 10px;
}

.gdpr-more-info-btn {
    background-color: #AAA !important;
    width: 38%;
    color: white;
}

.gdpr-close-btn {
    background-color: rgb(255, 85, 26) !important;
    width: 48%;
    color: white;
}

.gdpr-spacer {
    width: 10%;
}

.gdpr-cancel-btn {
    background-color: #AAA !important;
    width: 48%;
    color: white;
}

.gdpr-final-close-btn {
    background-color: rgb(255, 85, 26) !important;
    width: 48%;
    color: white;
}

.gdpr-btn:hover {
    opacity: 0.9;
}


.gdpr-first-part {
    display: none;
}

.gdpr-first-part.show {
    display: block;
}

.gdpr-second-part {
    display: none;
}

.gdpr-second-part.show {
    display: block;
}

.gdpr-lf {
    font-weight: 800 !important;
}

.gdpr-txt-header {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.gdpr-txt {
    font-size: 1.4rem;
}
  
@media (max-width: 640px) {
    .gdpr-button-container {
        flex-direction: column;
    }

    .gdpr-button-container .gdpr-btn {
        width: 100%;
        margin: 10px auto;
    }

    .gdpr-cancel-btn, .gdpr-final-close-btn {
        width: 100%;
    }

    .gdpr-spacer {
        display: none;
    }
}
  