.low {
    background-color: #ededed;
}
.normal {
    background-color: #f5f5ff;
}
.high {
    background-color: #ffd3cc;
}
.done {
    background-color: #d6e3bf;
    font-size: 0.3em;
    opacity: 0.3;
}
.new {
    background-color: #fffee1;
}

/* --- */
textarea,
.todo-task-input {
    width: 100%;
}

/* --- */
.responsive-table thead {
    display: none;
}

.responsive-table tbody {
    display: block;
    width: 100%;
}

.responsive-table tr {
    display: block;
    padding: 0.2rem;
    border-bottom: 1px solid #ccc;
}

.responsive-table td {
    display: block;
    text-align: left;
    margin-bottom: 0.2rem;
}

.responsive-table th,
.responsive-table td {
    width: 100%;
}

.responsive-table input,
.responsive-table textarea {
    width: 96%;
}

.todo-description-input {
  min-height: 4em;
  resize: vertical; /* or resize: both; */
  overflow-y: auto;
}

/* --- */
/* --------------------------------------------------------------- */
/* TODO Frontend */

.t_k_reservation-container-todo {
    position: relative;
    border-radius: 0.4rem;
    /*background-color: #9ECDFF; border: 2px solid #6BB3FF; */
    background-color: #EDEDED;
    border: 1px solid #777777;
    padding: 0.2rem ;
    box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 1);
    width: 100%;
    max-width: 1200px;
}

.t_k_reservation-container-todo td {
    border-radius: 0.4rem;
    text-align: center;
    margin: 0.2rem;
    border: 1px solid #CFCFCF;
}


.reservation_form_text, .t_k_reservation-container-todo h3  {
    padding-top: 0.1rem;
    color: #ffffff;
}



.t_k_reservation-container-todo input,
.t_k_reservation-container-todo textarea,
.t_k_reservation-container-todo select {
    height: 2rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #EDEDED;
    border-radius: 0.5rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.t_k_reservation-container-todo input:focus,
.t_k_reservation-container-todo select:focus,
.t_k_reservation-container-todo textarea:focus {
    outline: none; /* Remove default browser outline */
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}



.t_k_reservation-container-todo .todo-delete-task {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0.5rem;
    background-color: #dc3232;
    color: #fff;
    border: 3px solid #a31919;
    height: 3rem;
}

.t_k_reservation-container-todo .todo-delete-task:hover {
    background-color: #a31919;
    color: #fff;
    border-color: #dc3232;
}

