﻿.single-calendar {
   padding: 10px;
   width: 260px;
}

/* Header con selects */
.cal-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 8px;
   gap: 6px;
}

   .cal-header select {
      width: 48%;
      padding: 4px;
   }

/* Grilla de días */
.cal-grid {
   display: grid;
   grid-template-columns: repeat(7, 1fr);
   gap: 3px;
   margin-bottom: 8px;
}

.dow {
   font-weight: bold;
   text-align: center;
   font-size: 12px;
}

/* Día normal */
.day {
   text-align: center;
   padding: 6px 0;
   cursor: pointer;
   border-radius: 4px;
   font-size: 13px;
}

   /* Hover */
   .day:hover {
      background-color: #e8f0ff;
   }

   /* Día seleccionado */
   .day.selected {
      background-color: #0d6efd;
      color: white;
      font-weight: bold;
   }

   /* Día deshabilitado */
   .day.disabled {
      color: #aaa;
      pointer-events: none;
   }

/* Footer */
.cal-footer {
   margin-top: 6px;
}

.btn-today {
   width: 100%;
   padding: 6px;
   background: #f0f0f0;
   border: 1px solid #ccc;
   border-radius: 4px;
   cursor: pointer;
}

   .btn-today:hover {
      background: #e0e0e0;
   }
