:root {
    --br: 5px;
}

.todo-module {
    height: 100%;
    width: 100%;
    padding: 50px;
    border-radius: var(--br);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.add-list-btn {
    border: 1px solid var(--border-primary);
    background-color: var(--bg-tertiary);
    color: var(--font-primary);
    width: 30px;
    border-radius: var(--border-radius-small);
    max-height: 30px;
}

.add-list-btn:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.list-container {
    display: flex;
    gap: 5px;
}

.task-input-container {
    width: 80%;
    height: 500px;
    max-height: 800px;
    background-color: var(--bg-secondary);
    padding: 50px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-primary);
    margin-top: 25px;
    color: var(--font);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
    scroll-width: 0;
}

.task-input-container::-webkit-scrollbar {
    display: none;
}

.task-container {
    height: auto;
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 5px;
}

.remove-task-btn {
    background-color: inherit;
    color: var(--font-secondary);
    border: none;
}

.remove-task-btn:hover {
    cursor: pointer;
}

.persistent-todo-input {
    background-color: var(--bg-primary);
    color: var(--font);
    border: none;
    width: 60%;
    height: 40px;
    min-height: 40px;
    border-radius: var(--border-radius-small);
    padding-left: 25px;
}

.task-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
    min-height: 40px;
    font-size: 0.8rem;
    padding: 5px;
    border-radius: var(--border-radius-small);
}

.task-card:hover {
    background-color: var(--bg-primary);
}

.todo-title-input {
    font-family: var(--font);
    color: var(--font-primary);
    background-color: inherit;
    border: none;
    height: 100%;
    width: 90%;
}

.title-checkbox-span {
    display: flex;
    width: 90%;
}

.custom-select {
    height: auto;
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius-small);
    width: 150px;
    background-color: var(--bg-tertiary);
}

.custom-select:hover {
    cursor: pointer;
}

.custom-dropdown {
    height: auto;
    width: 100%;
}

.custom-dropdown-option {
    height: 30px;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
}

.dropdown-delete-btn {
    background-color: inherit;
    border: none;
    color: var(--font-secondary);
}

.list-input {
    height: 30px;
    width: 100px;
    border: 1px solid var(--border-primary);
    background-color: var(--bg-tertiary);
    color: var(--font-primary);
    border-radius: var(--border-radius-small);
    padding-left: 10px;
    padding-right: 10px;
}

.displaying-list-option {
    overflow: hidden;
}

.dropdown-option-title {
    overflow: hidden;
}
