.task_tables {
    margin: auto;
    font-family: Montserrat;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.75px;
    color: rgb(31, 41, 55);
  }
  
  .task_list_group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-height: 350px;
    overflow-y: auto;
  }
  
  .task_date_input_subtitle {
    font-size: 13px;
    font-weight: 600;
    color: rgb(31, 41, 55);
  }
  
  .tasks_lines {
    display: grid;
    grid-template-columns: 40px auto 40px;
    background-color: #f5f4f1;
    border-radius: 15px;
    padding: 10px;
    align-items: center;
    gap: 10px;
  }
  
  .icon-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin: auto;
    display: block;
  }
  
  .icon-button img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  
  .icon-button:hover img {
    transform: scale(1.3) rotate(15deg);
  }
  
  .task_checkbox {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    cursor: pointer;
    margin: auto;
    display: block;
    border: 2px solid rgb(31, 41, 55);
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    transition: background-color 0.2s ease;
    position: relative;
  }
  
  .task_checkbox.checked {
    background-color: rgb(31, 41, 55);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13L9 17L19 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
  }
  
  .task_textarea {
    overflow: hidden;
    width: 100%;
    min-height: 48px;
    padding: 6px 10px;
    font-family: inherit;
    font-size: 14px;
    border-radius: 6px;
    resize: vertical;
    box-sizing: border-box;
    line-height: 1.4;
    border: 2px solid rgb(31, 41, 55);
    background: transparent;
    color: rgb(31, 41, 55);
    outline: none;
  }
  
  .task_textarea:focus {
    border: 1px solid rgb(31, 41, 55);
    box-shadow: none;
  }
  
  .task_date_input {
    background: transparent;
    border: none;
    font-family: Montserrat;
    font-size: 14px;
    color: rgb(31, 41, 55);
    width: 120px;
  }
  
  .save-button, .add-button {
    width: 100px;
    background-color: rgb(31, 41, 55);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .save-button:hover {
    background-color: rgb(51, 65, 85);
  }
  
  .cancel-button {
    background-color: #e5e7eb;
    color: rgb(31, 41, 55);
    border: none;
    border-radius: 30px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .cancel-button:hover {
    background-color: #d1d5db;
  }
  
  .scrollable-container {
    max-height: calc(100vh - 260px);
    overflow-y: auto;
    padding-left: 10px;
  }
  
  .scrollable-container::-webkit-scrollbar,
  .add-scrollable-container::-webkit-scrollbar {
    width: 12px;
    
  }
  
  .scrollable-container::-webkit-scrollbar-track,
  .add-scrollable-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
  }
  
  .scrollable-container::-webkit-scrollbar-thumb,
  .add-scrollable-container::-webkit-scrollbar-thumb {
    background: rgb(31, 41, 55);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
  }
  
  .scrollable-container::-webkit-scrollbar-thumb:hover,
  .add-scrollable-container::-webkit-scrollbar-thumb:hover {
    background: rgb(51, 65, 85);
  }
  
  .add-scrollable-container {
    max-height: 75px;
    overflow-y: auto;
  }
  

  .modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .modal.show {
    display: flex;
  }
  
  .modal-background-blur {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(1px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  

  
  /* animación cuando aparece */
  .modal.show .modal-content {
    opacity: 1;
    transform: scale(1);
  }
  
  
  .modal-content h3 {
    margin-top: 0;
    font-size: 20px;
    color: #1f2937;
  }
  
  .modal-content label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
  }

  .add-task-placeholder{
    border: 4px dashed rgba(31, 41, 55, 0.4);
    opacity: 0.4;
    display: grid;
    grid-template-columns: 40px auto 40px;
    border-radius: 15px;
    padding: 10px;
    align-items: center;
    cursor: pointer;
    margin: auto 0px 5px 10px;
    height: 47px;
  }

  .add-task-placeholder:hover{
    border: 4px dashed rgba(31, 41, 55, 1.0);
    opacity: 1.0;
  }
  
  /* Estilo del form de agregar tarea */
  .task_modal_form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: Montserrat;
    color: rgb(31, 41, 55);
  }

  #bulk-update-form{
    margin: auto;
  }

  .task_date_header{
    margin: 0;
  }
  
  .task_input {
    padding: 10px 12px;
    font-size: 14px;
    border: 2px solid rgb(31, 41, 55);
    border-radius: 10px;
    background-color: transparent;
    color: rgb(31, 41, 55);
    outline: none;
    font-family: Montserrat;
  }
  
  .task_input:focus {
    border-color: rgb(51, 65, 85);
  }
  
  .modal_buttons {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin-top: 10px;
  }
  
  .modal-content-tasks {
    max-width: 600px;
    text-align: start;
    position: relative;
    font-family: Montserrat;
    z-index: 2;
    background-color: #f5f4f1;
    padding: 2rem;
    border-radius: 40px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .modal-content-tasks input[type="date"] {
    max-width: 200px;
  }
  