.todo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    margin-bottom: 6px;
}

.todo-text-true {
    flex-grow: 1;
    text-decoration: line-through;
    opacity: 0.6;
}

.todo-text-false {
    flex-grow: 1;
}

.todo-delete-btn {
    background: none;
    border: none;
    color: #b85c6a;
    font-size: 16px;
    cursor: pointer;
}

.todo-delete-btn:hover {
    color: #9f4a57;
}

.todo-checkbox input {
    display: none;
}

#add-todo-btn {
    background-color: #f7f4f0;
    color: #000000;
}

#add-todo-btn:hover {
    background-color: #e7e4e0;
}

.todo-checkbox label::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 2px solid #000000;
    margin-right: 10px;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.todo-checkbox input:checked + label::before {
    background-color: #000000;
    border-color: #000000;
    content: "\2713";
    color: white;
    font-size: 14px;
    text-align: center;
    line-height: 16px;
}

.todo-item.list-false {
    cursor: grab;
}

.todo-item.dragging {
    opacity: 0.4;
}

/* ------------- LISTS ----------------*/
#todo-list {
    height: 38.3vh;
}

#checked-list {
    height: 12.5vh;
}

/* ------------- PRIORITY ----------------*/
.todo-priority {
    width: 7vw;
    font-size: 16px;
    font-weight: 500;
}

.todo-priority .Select-menu-outer {
    background-color: #f7f4f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    margin-top: 4px;
    border: 1px solid #e7e4e0;
    z-index: 9999 !important;
}

.todo-priority .Select-value-label {
    color: black !important;
    font-weight: 540;
}

.todo-priority .VirtualizedSelectOption {
    background-color: #f7f4f0;
    color: black;
}

.todo-priority .VirtualizedSelectFocusedOption {
    background-color: #e7e4e0;
    color: black;
}

/* ------------- DATE PICKER ----------------*/
.todo-date {
    width: 8.5vw;
    font-size: 14px;
    margin-right: 50px;
}

.todo-date .DateInput {
    width: 100% !important;
}

.todo-date .DateInput_input {
    background-color: #f7f4f0;
    border: 2px solid rgba(100, 100, 100, 0.4);
    border-radius: var(--radius);
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
}

.todo-date .DateInput_input:hover {
    background-color: #e7e4e0;
}

.todo-date .DateInput_input__focused {
    border-color: var(--color-budget);
    outline: none;
}

.todo-date .DateInput_input__disabled {
    background-color: #e0dfdd;
    color: #999999;
    cursor: not-allowed;
    text-decoration: none;
}

.todo-date .DayPicker {
    background-color: #f7f4f0;
    transform: scale(0.75);
    transform-origin: top left;
}

.todo-date .CalendarDay__selected {
    background: var(--color-budget);
    border: 1px solid var(--color-budget);
    color: white;
}

.todo-date .CalendarDay__hovered_span,
.todo-date .CalendarDay__hovered {
    background-color: #e7e4e0;
}

.todo-date .CalendarDay__today {
    border-bottom: 2px solid var(--color-budget);
}

.SingleDatePickerInput {
    border: none;
}
