   /* Estilos do Calendário */
   .event-calendar {
    font-family: inherit;
  }
  
  .calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }
  
  .calendar-weekday {
    padding: 8px 4px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-align: center;
  }
  
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }
  
  .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
  }
  
  .calendar-day:hover:not(.empty):not(.other-month) {
    background-color: #e9ecef;
  }
  
  .calendar-day.today {
    background-color: #0066a1;
    color: white;
    font-weight: bold;
  }
  
  .calendar-day.other-month {
    color: #ccc;
  }
  
  .calendar-day.has-event {
    /*  background-color: #5699d8;
      color: white;*/
      font-weight: bold;
  }
  
  .calendar-day.has-event-reuniao {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0066a1;
  }


  .calendar-day.has-event-evento {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #a15b00;
  }
  
  .calendar-day.has-event.event-audiencia::after {
    background-color: #0d6efd;
  }
  
  .calendar-day.has-event.event-cultural::after {
    background-color: #198754;
  }
  
  .calendar-day.has-event.event-reuniao::after {
    background-color: #ffc107;
  }
  
  .calendar-day.has-event.multiple-events::after {
    width: 18px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #0d6efd 33%, #198754 33%, #198754 66%, #ffc107 66%);
  }
  
  .calendar-day.selected {
    background-color: #0066a1;
    color: white;
  }
  
  /* Legenda */
  .calendar-legend {
    font-size: 0.8rem;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
  }
  
  .legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
  }

  .legend-dot-mini {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
  }
  
  /* Lista de Eventos */
  .event-date-badge {
    width: 55px;
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .event-date-badge .event-day {
    font-size: 1.25rem;
    line-height: 1;
  }
  
  .event-date-badge .event-month {
    font-size: 0.7rem;
    text-transform: uppercase;
  }
  
  .event-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
  }
  
  .event-hover:hover {
    background-color: #e9ecef !important;
    transform: translateX(5px);
    border-left-color: #0066a1;
  }
  
  .event-item.highlight {
    background-color: #d4edda !important;
    border-left-color: #198754;
  }
  
  .events-list {
    max-height: 450px;
    overflow-y: auto;
  }
  
  .events-list::-webkit-scrollbar {
    width: 6px;
  }
  
  .events-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }
  
  .events-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
  }
  
  .events-list::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
  }
  
  @media (max-width: 991.98px) {
    .events-list {
      max-height: 350px;
    }
  }
  
  /* Estilos do Modal */
  .event-date-badge-modal {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .event-date-badge-modal .event-day {
    font-size: 1.5rem;
    line-height: 1;
  }
  
  .event-date-badge-modal .event-month {
    font-size: 0.75rem;
    text-transform: uppercase;
  }
  
  .event-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .event-actions {
    flex-shrink: 0;
  }
  
  @media (max-width: 575.98px) {
    .event-item {
      flex-wrap: wrap;
    }
    
    .event-actions {
      width: 100%;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid #dee2e6;
    }
    
    .event-actions .btn {
      width: 100%;
    }
  }
  
  /* Estilos da Galeria de Fotos do Evento */
  .event-gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
  }
  
  .event-gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .event-gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .event-gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .event-gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .event-gallery-item .gallery-overlay i {
    color: white;
    font-size: 1.5rem;
  }
  
  .event-text-content {
    line-height: 1.7;
    color: #555;
  }
  
  .event-text-content ul {
    padding-left: 1.5rem;
  }
  
  .event-text-content li {
    margin-bottom: 0.5rem;
  }
  
  .photo-nav-btn {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10;
  }
  
  .photo-nav-btn:hover {
    opacity: 1;
  }
  
  #eventPhotoModal .modal-body {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }