/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    background-color: #FFFFFF;
    color: #784503;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #1DC1B8;
    margin-top: 0;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-radius: 8px;
    background: #fdfdfd;
}

/* Buttons & Formulare */
input, select, textarea, button, .btn {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

input[type="text"], input[type="email"], input[type="password"], select {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 25px; /* Radius: Immer 25px */
    height: 48px; /* Feste Höhe */
    color: #784503;
    background-color: #fff;
}

button, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 25px; /* Radius: Immer 25px */
    height: 48px; /* Feste Höhe */
    padding: 0 24px;
    color: #FFFFFF; /* Schriftfarbe: Immer Weiß */
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.1s;
}

button:hover, .btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

button:active, .btn:active {
    transform: translateY(1px);
}

/* Spezifische Button-Farben */
.btn-submit, .btn-ok {
    background-color: #2F9E44; /* OK oder Senden: Grün */
}

.btn-info {
    background-color: #1DC1B8; /* ?: Türkis */
}

.btn-delete {
    background-color: #B03B3B; /* Löschen: Rot */
}

/* Tabellen */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

table th {
    color: #1DC1B8;
    font-weight: 600;
}

/* Hilfsklassen */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background-color: #ffebee;
    color: #B03B3B;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2F9E44;
}

.card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.file-list {
    list-style: none;
    padding: 0;
}

.file-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.file-list li:last-child {
    border-bottom: none;
}
