.timesheet-day {

}
.timesheet-table thead th{
    background: var(--highlight-bg-color);
    font-size: var(--panel-title-size);
    line-height: 1em;
    color: var(--panel-title);
    font-weight: 700;
}

.timesheet-table .day-heading th {
    font-weight: 600;
}
.timesheet-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.timesheet-row > * {
    flex: 1;
    margin-bottom: 0;
}
.timesheet-row > .timesheet-row-notes {
    flex: 0 0 100%;
}
/*
.day-label {
    font-weight: bold;
    color: #c0baba;
    font-size: 16px;
    margin-bottom: 10px;
}
.timesheet-row {
    display: flex;
    gap: 40px;
    margin-bottom: 10px;
    align-items: flex-start;
}
.timesheet-row select,
.timesheet-row label,
.timesheet-row input[type='time'],
.timesheet-row input[type='number'],
.timesheet-row input[type='text'] {
    padding: 4px;
    min-width: 120px;
    border-radius: 4px;
}
.pay-type-hours {
    display: flex;
    gap: 6px;
    align-items: center;
}
.add-row {
    color: red;
    font-weight: bold;
    margin-top: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.timesheet-table > tr > td,
.timesheet-table td {
    border: none !important;
}

td.timesheet-add-row {
    border-bottom: 2px solid #ddd !important;
}
*/

.delete-timesheet-row {
    width: 20px;
    height: 20px;
    background: var(--danger);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px; 
    margin-left: auto;
    transition: background 0.3s ease, color 0.3s ease;
}

.delete-timesheet-row .gi_svg_icon {
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-timesheet-row .gi_svg_icon svg * {
    fill: #fff !important;
}
