﻿/* ========================= */
/* Settings Page             */
/* ========================= */

.ed-settings-page {
    width: 50%;
}

.ed-settings-card {
    background: #ffffff;
    padding: 1.875rem 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 1.25rem rgba(0,0,0,0.05);
}

.ed-settings-section {
    margin-bottom: 2.5rem;
}

    .ed-settings-section h2 {
        margin-bottom: 1.25rem;
        font-size: 1.125rem;
        font-weight: 600;
    }

.ed-form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

    .ed-form-row label {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
        font-weight: 500;
    }

    .ed-form-row input {
        width: 50%;
        max-width: 50%;
        box-sizing: border-box;
        padding: 0.5rem 0.625rem;
        border-radius: 0.375rem;
        border: 0.0625rem solid #ccc;
        font-size: 0.875rem;
    }

/* Checkbox-Row: sauber nebeneinander */
.ed-checkbox-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
}

    /* Checkbox selber: keine 50%-Breite, kein Input-Style */
    .ed-checkbox-row input[type="checkbox"] {
        width: auto;
        max-width: none;
        padding: 0;
        border: none;
    }

.ed-settings-actions {
    margin-top: 1.25rem;
}

.ed-primary-button {
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    border: none;
    background: #2c78ff;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

    .ed-primary-button:hover {
        background: #1e5ed6;
    }

.ed-settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 1.875rem;
}
