.dashboard-container {
    display: flex;
    gap: 20px;
    padding: 100px;
}
.sidebar {
    width: 25%;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.sidebar input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.sidebar button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 5px;
    background: #007bff;
    color: white;
    cursor: pointer;
}
.sidebar button:hover {
    background: #0056b3;
}
.content {
    width: 70%;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
th {
    background: #007bff;
    color: white;
}
tr:nth-child(even) {
    background: #f2f2f2;
}
div#ui-datepicker-div {
    background: #fff;
}
