.cookies-configuration-container {
    max-width: 600px;
    /* width: 100%; */
    margin: 20px auto;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Título */
.cookies-configuration-container h1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

/* Párrafos */
.cookies-configuration-container p {
    font-size: 14px;
    color: #555;
    margin: 8px 0;
}

/* Enlaces */
.cookies-configuration-container a {
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
}

.cookies-configuration-container a:hover {
    text-decoration: underline;
}

/* Elemento de configuración */
.setting {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.setting > div:first-child {
    flex: 1;
    min-width: 200px;
}

.setting strong {
    font-size: 15px;
    color: #1a1a1a;
    display: block;
}

.setting p {
    font-size: 13px;
    color: #666;
    margin: 4px 0 0;
}

/* Switch toggle */
.toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    transition: 0.3s ease;
    border-radius: 18px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked + .slider {
    background-color: #EE2B2B;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Botón de guardar */
button#save-btn {
    margin-top: 24px;
    width: 100%;
    padding: 12px;
    background-color: #EE2B2B;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button#save-btn:hover {
    background-color: #d43a3a;
}

button#save-btn:active {
    transform: scale(0.98);
    background-color: #c42323;
}

/* Ajustes para móviles */
@media (max-width: 480px) {
    .cookies-configuration-container {
        margin: 16px;
        padding: 20px;
    }

    .cookies-configuration-container h1 {
        font-size: 20px;
    }

    .setting {
        padding: 14px 0;
        gap: 10px;
    }

    .setting strong {
        font-size: 15px;
    }

    .setting p {
        font-size: 13px;
    }

    .toggle {
        width: 50px;
        height: 25px;
    }

    .slider:before {
        height: 19px;
        width: 19px;
        left: 3px;
        bottom: 3px;
    }

    input:checked + .slider:before {
        transform: translateX(24px);
    }
}