/* Allgemeine Form-Stile */
.pdf-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pdf-form label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
}

.pdf-form input[type="text"],
.pdf-form input[type="email"],
.pdf-form input[type="date"],
.pdf-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}

/* Checkboxen & Radio Buttons */
.pdf-form .checkbox-field,
.pdf-form .radio-field {
    margin-right: 5px;
}

.pdf-form .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pdf-form .radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Buttons */
.button.primary,
#downloadPdf {
    display: inline-block;
    padding: 10px 15px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.button.primary:hover,
#downloadPdf:hover {
    background: #005177;
}

/* Tabelle für die Admin-Seite */
.pdf-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.pdf-table th,
.pdf-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.pdf-table th {
    background: #0073aa;
    color: #fff;
}

.pdf-table td a {
    color: #0073aa;
    text-decoration: none;
}

.pdf-table td a:hover {
    text-decoration: underline;
}
