.mini-gallery {
    display: flex;
    flex-direction: column; /* por defecto en celulares: principal arriba, secundarias abajo */
    align-items: center;
    width: 100%;
  }
  
  .mini-gallery img {
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  }
  
  .img-main {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .img-main:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .img-thumb {
    width: 120px;
    height: 120px;
    opacity: 0.7;
    margin: 5px;
    transition: transform 0.2s, opacity 0.2s;
  }
  
  .img-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
  }
  
  /* A partir de tablets/grandes: imágenes secundarias al lado */
  @media (min-width: 768px) {
    .img-main {
        width: 100%;
      }
    .mini-gallery {
      flex-direction: row; /* principal a la izquierda, secundarias a la derecha */
      align-items: flex-center;
    }
  
    .mini-gallery .thumbs-container {
      display: flex;
      flex-direction: column; /* las secundarias se apilan verticalmente */
      margin-left: 15px;
      align-items: flex-center;
    }
  }
  

  .calendar-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    max-width: 750px;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 16px;
  }

  .header .left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header .right {
    font-size: 14px;
    font-weight: normal;
    color: #333;
  }

  .nav-btn {
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f7f7f7;
    transition: 0.2s;
  }
  .nav-btn:hover { background: #e6e6e6; }

  .week-days {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .day {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
  }

  .day small {
    display: block;
    font-weight: normal;
    font-size: 12px;
    color: #666;
  }

  .status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 4px;
  }

  .dot-green { background: #28a745; }
  .dot-red { background: #dc3545; }

  .day.available { color: #2e64fe; }
  .day.unavailable { color: #aaa; }
  .day.disabled {
    color: #ccc;
    pointer-events: auto;
    opacity: 0.6;
  }

  .day.selected { background: #2e64fe; color: white; }

  .hours {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
  }

  .hour {
    padding: 10px 15px;
    border: 1px solid #aaa;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    color:#2e64fe;
  }
  .hour:hover { background: #f0f6ff; }
  .hour.selected { background: #2e64fe; color: white; }