/* Estructura principal */
.terapeutas-container {
    padding: 1rem;
  }
  
  .layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
  }
  
  .panel {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  /* Lista de terapeutas */
  .therapist-list {
    margin-top: 1rem;
  }
  
  .therapist-item {
    cursor: pointer;
    padding: 0.8rem;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
  }
  
  .therapist-item:hover {
    background-color: #e0f7fa;
  }
  
  .therapist-status {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 1rem;
    background-color: #4CAF50;
    color: white;
  }
  
  .therapist-status[data-rol="pasante"] {
    background-color: #FFC107;
    color: #333;
  }
  
  .therapist-status[data-rol="externo"] {
    background-color: #9E9E9E;
  }
  
  /* Filtros */
  .filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .filters label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
  }
  
  .filters input,
  .filters select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.3rem;
    margin-bottom: 0.5rem;
  }
  
  .btn-action {
    background-color: #004080;
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 0.3rem;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .btn-action:hover {
    background-color: #0066cc;
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow: auto;
  }
  
  .modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 600px;
    position: relative;
  }
  
  .close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 0.3rem;
  }
  
  .horario-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    align-items: center;
  }
  
  .horario-item select,
  .horario-item input {
    padding: 0.5rem;
  }
  
  .btn-add {
    background: none;
    border: none;
    color: #004080;
    cursor: pointer;
    margin: 0.5rem 0;
  }
  
  .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .btn-primary {
    background-color: #004080;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
  }
  
  .btn-cancel {
    background-color: #f0f0f0;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .layout {
      grid-template-columns: 1fr;
    }
    
    .modal-content {
      margin: 2rem auto;
      width: 95%;
      padding: 1.5rem;
    }
  }