#overlay-cc .btn {
    color: white;
    padding: 15px;
    border: 1px solid white;
    border-radius: 10px;
    font-size: 20px;
    margin: 0 25px;
}
#overlay-cc {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 99999 !important;
    cursor: pointer;
    text-align: center;
    font-family: 'Lato', sans-serif !important;
}
#overtext-cc {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 15px;
    color: white;
    min-width: 85vw;
    max-width: 85vw;
    max-height: 95vh;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.text-center {
    text-align: center;
}
/* Title styling */
.cookie-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}
/* Description styling */
.cookie-description {
    margin-bottom: 16px;
    color: #fff;
    text-align: left;
}
/* Checkbox container */
.cookie-options {
    text-align: left;
    margin-bottom: 20px;
}
.checkbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 5px;
}
.checkbox-label {
    font-weight: bold;
    color: #fff;
}
.checkbox-description {
    font-size: 12px;
    color: #fff;
    margin-top: 3px;
}
/* Button styling */
.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif !important;
}
.btn:hover {
    opacity: 0.9;
}
.btn-secondary {
    background-color: #6c757d;
    color: white;
}
.btn-danger {
    background-color: #dc3545;
    color: white;
}
.btn-success {
    background-color: #28a745;
    color: white;
}
/* Checkbox custom styling */
input[type="checkbox"] {
    transform: scale(1.5);
    margin-left: 10px;
    accent-color: #28a745;
}
/* Disabled checkbox styling */
.disabled-checkbox {
    opacity: 0.9;
    cursor: not-allowed;
}
/* Container für die aktuelle Seite */
.page-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
/* Cookie-Präferenzen-Management */
.cookie-preferences-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 99998 !important;
    font-family: 'Lato', sans-serif !important;
}

@media (max-width: 768px) {

    .button-group {
        flex-direction: column;
        gap: 4px;
    }
    .cookie-description {
        display: none;
    }
    #overlay-cc .btn {
        padding: 5px;
        font-size: 12px;
    }
}



