/* styles.css */

.menu-item {
    transition: background-color 0.3s; /* Smooth transition */
}

.menu-item:hover .card {
    background-color: #30D5C8; /* Change to desired color on hover */
}

/* Task Form Styles */
.task-form-container {
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Anek Odia', sans-serif;
}

.form-group {
    margin-bottom: 10px;
}

label {
    display: block;
}

input[type="text"],
textarea {
    width: 100%;
}

.date-time-inputs {
    display: flex;
}

input[type="date"],
input[type="time"] {
    flex: 1;
    margin-right: 10px;
}

.create-task-btn {
    background-color: #800080;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* Tasks Table Styles */
.tasks-table {
    /* Add your table styles here */
}

.task-list-container {
    max-width: 0 auto;
    margin: 0 auto;
    padding: 10px 20px;
    font-family: 'Anek Odia', sans-serif;
}


/* Add more CSS for table headers, table rows, etc. */
