/* Allgemeine Einstellungen */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5fafd !important; /* !important erzwingt es */
    color: #1e1e1e;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* Textbox */
.textbox, .textbox_M {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    padding: 12px 18px;
    border: 1px solid #ccc;
    border-radius: 12px; /* Rundere Ecken */
    background-color: #fff;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.textbox_M {
    background-color: #f0f6ff;
    color: #1e1e1e;
    border: 1px solid #0073aa;
}

.textbox:focus, .textbox_M:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.3);
}

/* Formularelemente */
select, input {
    width: 100%;
    max-width: 350px;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 12px; /* Rundere Ecken */
    background-color: #fff;
    font-size: 1rem;
    color: #1e1e1e;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select:focus, input:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.3);
    outline: none;
}

/* Tabellenstil */
#customers {
    width: 100%;
    border-collapse: separate; /* Ermöglicht abgerundete Kanten */
    border-spacing: 0;
    margin-top: 20px;
    font-size: 0.95rem;
    border: 1px solid #ddd;
    border-radius: 12px; /* Runde Ecken für Tabelle */
    overflow: hidden; /* Damit die runden Ecken sichtbar bleiben */
}

#customers th, #customers td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

#customers th {
    background-color: rgb(87, 87, 87);
    color: #f0f0f0;
    font-weight: 600;
}

#customers tr:nth-child(even) {
    background-color: #fafafa;
}

#customers tr:hover {
    background-color: #f2f2f2;
}

/* Buttons */
.Button {
    display: inline-block;
    background-color: #0073aa;
    color: #fff !important;
    padding: 12px 22px;
    border: none;
    border-radius: 999px; /* Pill-Style */
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: auto;
    min-width: 140px;
    cursor: pointer;
}

.Button:hover {
    background-color: #005a8c;
}

.Button:active {
    transform: scale(0.98);
}

/* Links */
a {
    color: #0073aa;
    text-decoration: underline;
    transition: color 0.2s ease;
    border-radius: 4px;
}

a:hover {
    color: #005a8c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .textbox, .textbox_M, select, input, .Button {
        width: 90%;
    }
}
