/* style.css */

/* Add to style.css */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Admin spezifisch */
.upload-box input[type="file"] {
    font-size: 0.9em;
}




body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1, h2 { text-align: center; color: #333; }

/* Formulare */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

input, button, .btn {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button, .btn {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}

button:hover, .btn:hover { background-color: #0056b3; }
.btn-danger { background-color: #dc3545; }
.btn-danger:hover { background-color: #a71d2a; }
.btn-secondary { background-color: #6c757d; }

/* Grid für PDF Buttons */
.pdf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pdf-card {
    background: #e9ecef;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* Tabellen für Admin */
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { padding: 10px; border-bottom: 1px solid #ddd; text-align: left; }
th { background-color: #f8f9fa; }

.alert { padding: 10px; background: #d4edda; color: #155724; border-radius: 5px; margin-bottom: 20px; }
.error { background: #f8d7da; color: #721c24; }
