.wc-timesheet-form-wrapper,
.wc-timesheet-entries-list {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.wc-timesheet-form-wrapper h2,
.wc-timesheet-entries-list h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.woocommerce-form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.woocommerce-Input, .woocommerce-Input--text, .woocommerce-Input--textarea, .input-text {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-size: 1em;
}

.woocommerce-Input--textarea {
    min-height: 120px;
    resize: vertical;
}

.woocommerce-button.button {
    background-color: #007cba;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.woocommerce-button.button:hover {
    background-color: #005f8f;
}

.woocommerce-message, .woocommerce-error {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
}

.woocommerce-message {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.woocommerce-error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.woocommerce-MyAccount-timesheet-entries {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.woocommerce-MyAccount-timesheet-entries th,
.woocommerce-MyAccount-timesheet-entries td {
    border: 1px solid #eee;
    padding: 10px;
    text-align: left;
}

.woocommerce-MyAccount-timesheet-entries th {
    background-color: #f8f8f8;
}

.timesheet-status {
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
}

.timesheet-status-pending_review {
    background-color: #ffe0b2; /* Light orange */
    color: #e65100; /* Dark orange */
}

.timesheet-status-approved_timesheet {
    background-color: #c8e6c9; /* Light green */
    color: #2e7d32; /* Dark green */
}

.timesheet-status-rejected_timesheet {
    background-color: #ffcdd2; /* Light red */
    color: #c62828; /* Dark red */
}