/* Estilo para os seletores de ano, mês, etc */
.pt-dashboard-select {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pt-dashboard-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Estilos complementares para melhorar a aparência do dashboard */
.btn-chart {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.375rem 0.75rem;
}

.btn-chart span[class^="icon-"] {
    margin-right: 5px;
    position: relative;
    top: 1px;
}

/* Estilizar botão Excel */
.btn-excel {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-excel:hover {
    background-color: #218838;
    color: #ffffff;
}