body {
    background-color: #e0f7fa;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

form {
    background-color: rgba(181, 203, 210, 0.273);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(225, 55, 55, 0.1);
    height: 400px;
    width: 1000px;
    margin: 20px auto;
    overflow-y: scroll;
    overflow-x: hidden;
}

form::-webkit-scrollbar {
    width: 12px;
}

form::-webkit-scrollbar-track {
    background: rgba(0, 0, 139, 0.1);
    border-radius: 10px;
}

form::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 139, 0.5);
    border-radius: 10px;
}

form {
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 122, 208, 0.284) rgba(0, 0, 139, 0.1);
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-row {
    display: flex;
    justify-content: flex-start;
    gap: 20px; 
}

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

.form-group input, .form-group textarea, .form-group select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.projektname-input {
    width: 5cm;
}

.kunde-input {
    width: 6cm;
}

.kontakt-person-input {
    width: 6cm;
}

.beschreibung-input textarea {
    width: calc(100% - 20px);
    margin: 0 10px;
}

.salutation-input {
    width: 4cm;
}

.sex-input {
    width: 3cm;
}

.vorname-input {
    width: 6cm;
}

.nachname-input {
    width: 6cm;
}

.email-input input {
    width: 8cm;
}

.senden-btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background-color: #0088ffb4;
    color: #fff;
    cursor: pointer;
    height: 50px; 
}

.senden-btn:hover {
    background-color: #00b39584;
}

.add-mitarbeiter-btn {
    background-color: #0077ffb4;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    margin-right: 40px;
    height: 37px; 
}

.add-mitarbeiter-btn:hover {
    background-color: #00b3a7ba;
}
