/* ==============================
   CarlottaX – Settings Styles
   basiert auf base.css
   ============================== */

main {
    flex: 1;
    padding: 2rem;
    margin-left: 220px; /* Platz für Sidebar */
    max-width: 640px;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--c-accent-2);
}

h2 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--c-accent);
}

/* ---- Settings Section ---- */
#theme-settings {
    background: var(--c-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

#theme-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#theme-form label {
    font-weight: 500;
}

#theme-select {
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--c-muted);
    background: var(--c-surface-solid);
    font-size: 0.95rem;
    cursor: pointer;
}

#theme-form button {
    align-self: flex-start;
    padding: 0.65rem 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
    color: #fff;
    transition: transform 0.2s, box-shadow 0.3s;
}

#theme-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
