.cem-form table {
    width: 100%;
    border-collapse: collapse;
}

.cem-form table td {
    padding: 5px 10px; /* Reduzierter Padding */
    vertical-align: top;
}

.cem-form table td label {
    font-weight: bold;
    margin-right: 10px; /* Optional: Abstand zwischen Label und Feld */
}

.cem-form input[type="text"],
.cem-form input[type="datetime-local"],
.cem-form input[type="url"],
.cem-form select,
.cem-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.cem-form input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.cem-form input[type="submit"]:hover {
    background-color: #005f8d;
}
