.hr-report-form {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.hr-report-form h2 {
    color: #be894a;
}

.hr-report-form label {
    display: block;
    margin-bottom: 10px;
    color: #333;
}

.hr-report-form textarea,
.hr-report-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hr-report-form input[type="submit"] {
    background-color: #be894a;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.hr-report-form input[type="submit"]:hover {
    background-color: #a77a3c;
}

.hr-report-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.hr-report-table th,
.hr-report-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.hr-report-table th {
    background-color: #f2f2f2;
    color: #333;
}

.hr-report-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.hr-report-table tr:hover {
    background-color: #f1f1f1;
}
