body {
    background-color: #F2F2F2;
    font-family:"Calibri", sans-serif;
}
.btn-custom {
    background-color: #808080;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    width: 100%;
}
.btn-custom:hover {
    background-color: #F28D52;
}
.btn-secondary-custom {
    background-color: #ADC8D9;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    width: 100%;
}
.btn-secondary-custom:hover {
    background-color: #F28D52;
}
.drop-zone {
    border: 2px dashed #D94625;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    margin-top: 15px;
    color: #D94625;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

/* 1) Cabeçalho laranja para todas as tabelas */
table thead th {
    background-color: #F36B26;
    color: #fff;
}

/* 2) Rodapé cinza suave: última linha do corpo */
table tbody tr:last-child td {
    background-color: #EAEAEA;
    color: #333;
    font-weight: 600;
}

/* 3) Se usar <tfoot>, ainda mais simples: */

table tfoot td {
    background-color: #EAEAEA;
    color: #333;
    font-weight: 600;
}


/* e para o card header, se quiseres */
.card-header {
    background-color: #F36B26;
    color: #fff;
}

.tabelas-container {
    display: flex;
    justify-content: space-between;
}
.tabela {
    width: 32%;
}
.dias-header {
    display: flex;
    justify-content: center;
    gap: 20px; /* Ajuste para espaçar os números */
    font-weight: bold;
    margin-bottom: 10px;
}

.datepicker-dropdown.datepicker-orient-bottom {
    margin-top: 20px !important; /* ou 30px, conforme preferir */
}

.btn-group .btn.active,
.btn-group .btn.active:hover {
    background-color: #F36B26 !important;
    border-color:     #F36B26 !important;
    color:            #fff !important;
}

.navbar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}
.navbar-nav .nav-link {
    padding-right: 20px;
    padding-left: 20px;
}
.navbar-brand img {
    height: 50px;
}


/* 1) Ajusta a cor primária de todo o .btn-primary */
.btn-primary {
  --bs-btn-bg: #F36B26;
  --bs-btn-border-color: #F36B26;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
  --bs-btn-bg: #D35400;
  --bs-btn-border-color: #D35400;
  color: #fff;
}

/* 2) Ajusta outline-primary para usar seu laranja */
.btn-outline-primary {
  --bs-btn-color: #F36B26;
  --bs-btn-border-color: #F36B26;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  --bs-btn-bg: #F36B26;
  --bs-btn-color: #fff;
}


/* 4) E no cabeçalho de tabelas com .table-primary */
.table-primary > :where(tr, th, td) {
  background-color: #F36B26 !important;
  color: #fff !important;
}

/* Override global da bg-primary para o seu laranja */
.bg-primary {
  background-color: #F36B26 !important;
  border-color:    #F36B26 !important;
}

/* Garante que o texto permaneça branco */
.text-white {
  color: #fff !important;
}

/* Chrome, Safari, Edge */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}