body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 20px;
    background-color: #f7f7f7;
}
.form-group {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input, select {
    width: 100%;
    padding: 6px;
    font-size: 14px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-inline {
    display: flex;
    align-items: center;
}
.form-inline input {
    flex: 1;
    padding: 6px;
    font-size: 14px;
}
.form-inline span {
    margin-left: 8px;
    font-weight: bold;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table, th, td {
    border: 1px solid #ccc;
}
th, td {
    padding: 10px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.reset-button {
    background-color: red;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
}
#export-pdf-button {
    background-color: rgb(5, 110, 40);
}

#data-form {
    margin-bottom: 2%;
}

.reset-button:hover {
    background-color: darkred;
}
button {
    padding: 8px 16px;
    font-size: 14px;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
}
.modal-close {
    float: right;
    font-size: 20px;
    cursor: pointer;
    color: red;
}
.log-row {
    background-color: #f9f9f9;
    font-size: 14px;
    border-top: 1px solid #ccc;
    text-align: center;
}

textarea {
    width: 100%;
    padding: 6px; 
    font-size: 14px; 
    box-sizing: border-box; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    resize: none; 
}

.wtr-sketch-title {
    color: #bbb9b9;
    font-size: 12px;
}

