/* FORÇA BRUTA: Adicionar setas de navegação via CSS */

/* Adicionar setas usando ::before e ::after no container do mês */
.CalendarMonth:first-child .CalendarMonth_caption::before {
    content: "‹";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #495057;
    cursor: pointer;
    z-index: 1000;
    line-height: 1;
}

.CalendarMonth:last-child .CalendarMonth_caption::after {
    content: "›";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #495057;
    cursor: pointer;
    z-index: 1000;
    line-height: 1;
}

/* Hover */
.CalendarMonth_caption::before:hover,
.CalendarMonth_caption::after:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

/* Ajustar padding do caption para dar espaço */
.CalendarMonth_caption {
    padding: 10px 60px !important;
    position: relative !important;
}

/* Alternativa: Adicionar controles de navegação customizados */
.DateRangePicker_picker::before {
    content: "← Mês Anterior";
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1000;
    font-size: 12px;
    color: #495057;
}

.DateRangePicker_picker::after {
    content: "Próximo Mês →";
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1000;
    font-size: 12px;
    color: #495057;
}

/* Hack final: Mostrar texto indicativo se nada funcionar */
.DayPicker__horizontal::before {
    content: "Use o teclado: ← → para navegar entre meses";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #6c757d;
    background: #fff3cd;
    padding: 2px 8px;
    border-radius: 3px;
    z-index: 1000;
}