285 lines
5.8 KiB
CSS
285 lines
5.8 KiB
CSS
/* --- Esconde a barra de unidade e profissional --- */
|
|
.unidade-selecionarprofissional {
|
|
display: none;
|
|
}
|
|
|
|
/* --- Posiciona a barra de busca corretamente --- */
|
|
.busca-atendimento {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 20px;
|
|
padding: 0 10px;
|
|
gap: 15px;
|
|
}
|
|
|
|
.busca-atendimento > div:first-child {
|
|
width: 400px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.busca-atendimento {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
gap: 10px;
|
|
}
|
|
|
|
.busca-atendimento > div:first-child {
|
|
width: 100%;
|
|
}
|
|
|
|
.btns-e-legenda-container {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
}
|
|
|
|
.legenda-tabela {
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
.busca-atendimento {
|
|
padding: 0 5px;
|
|
}
|
|
|
|
.btns-e-legenda-container {
|
|
padding: 0 5px;
|
|
}
|
|
|
|
.btn-selecionar-tabeladia,
|
|
.btn-selecionar-tabelasemana,
|
|
.btn-selecionar-tabelames {
|
|
padding: 6px 8px;
|
|
font-size: medium;
|
|
}
|
|
}
|
|
|
|
.busca-atendimento input {
|
|
margin-left: 8px;
|
|
border-radius: 8px;
|
|
padding: 8px;
|
|
width: 100%;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
.busca-atendimento select {
|
|
padding: 8px;
|
|
border-radius: 8px;
|
|
background-color: #0078d7;
|
|
color: white;
|
|
font-weight: bold;
|
|
border: none;
|
|
}
|
|
|
|
/* --- Estilos dos botões de Dia, Semana, Mês --- */
|
|
.btn-selecionar-tabeladia,
|
|
.btn-selecionar-tabelasemana,
|
|
.btn-selecionar-tabelames {
|
|
background-color: rgba(231, 231, 231, 0.808);
|
|
padding: 8px 10px;
|
|
font-size: larger;
|
|
font-weight: bold;
|
|
border-style: hidden;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn-selecionar-tabeladia {
|
|
border-radius: 10px 0px 0px 10px;
|
|
}
|
|
|
|
.btn-selecionar-tabelames {
|
|
border-radius: 0px 10px 10px 0px;
|
|
}
|
|
|
|
.btn-selecionar-tabeladia.ativo,
|
|
.btn-selecionar-tabelasemana.ativo,
|
|
.btn-selecionar-tabelames.ativo {
|
|
background-color: lightcyan;
|
|
border-color: darkcyan;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
/* --- Container dos botões e legenda --- */
|
|
.btns-e-legenda-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 10px;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
/* --- Legendas --- */
|
|
.legenda-tabela {
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
#status-card-consulta-realizado, .legenda-item-realizado {
|
|
background-color: #b7ffbd;
|
|
border: 3px solid #91d392;
|
|
padding: 5px;
|
|
font-weight: bold;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#status-card-consulta-cancelado, .legenda-item-cancelado {
|
|
background-color: #ffb7cc;
|
|
border: 3px solid #ff6c84;
|
|
padding: 5px;
|
|
font-weight: bold;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#status-card-consulta-confirmado, .legenda-item-confirmado {
|
|
background-color: #eef8fb;
|
|
border: 3px solid #d8dfe7;
|
|
padding: 5px;
|
|
font-weight: bold;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#status-card-consulta-agendado, .legenda-item-agendado {
|
|
background-color: #f7f7c4;
|
|
border: 3px solid #f3ce67;
|
|
padding: 5px;
|
|
font-weight: bold;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
/* --- Estrutura Geral --- */
|
|
.calendario {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
|
|
border: 1px solid #eee;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.calendario-ou-filaespera {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.container-btns-agenda-fila_esepera {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
gap: 20px;
|
|
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
padding: 0 20px 0;
|
|
border-bottom: 1px solid #edf1f7;
|
|
}
|
|
|
|
|
|
.btn-fila-espera,
|
|
.btn-agenda {
|
|
background-color: transparent;
|
|
border: 0px;
|
|
border-bottom: 3px solid transparent;
|
|
padding: 8px;
|
|
border-radius: 10px 10px 0px 0px;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.opc-filaespera-ativo,
|
|
.opc-agenda-ativo {
|
|
color: white;
|
|
background-color: #5980fd;
|
|
}
|
|
|
|
|
|
/* Dark mode styles */
|
|
html[data-bs-theme="dark"] {
|
|
background-color: #181a1b;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .calendario {
|
|
background-color: #23272a;
|
|
border: 1px solid #333;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.25);
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .busca-atendimento input {
|
|
background-color: #23272a;
|
|
color: #e0e0e0;
|
|
border: 1px solid #444;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .busca-atendimento select {
|
|
background-color: #5980fd;
|
|
color: #fff;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabeladia,
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabelasemana,
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabelames {
|
|
background-color: #23272a;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabeladia.ativo,
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabelasemana.ativo,
|
|
html[data-bs-theme="dark"] .btn-selecionar-tabelames.ativo {
|
|
background-color: #5980fd;
|
|
color: #fff;
|
|
border-color: #3a5ccc;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .btn-fila-espera,
|
|
html[data-bs-theme="dark"] .btn-agenda {
|
|
background-color: #23272a;
|
|
color: #e0e0e0;
|
|
border-bottom: 3px solid transparent;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] .opc-filaespera-ativo,
|
|
html[data-bs-theme="dark"] .opc-agenda-ativo {
|
|
background-color: #5980fd;
|
|
color: #fff;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] #status-card-consulta-realizado,
|
|
html[data-bs-theme="dark"] .legenda-item-realizado {
|
|
background-color: #1e2e1e;
|
|
border: 3px solid #2e4d2e;
|
|
color: #b7ffbd;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] #status-card-consulta-cancelado,
|
|
html[data-bs-theme="dark"] .legenda-item-cancelado {
|
|
background-color: #2e1e23;
|
|
border: 3px solid #4d2e36;
|
|
color: #ffb7cc;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] #status-card-consulta-confirmado,
|
|
html[data-bs-theme="dark"] .legenda-item-confirmado {
|
|
background-color: #1e2327;
|
|
border: 3px solid #2e3a4d;
|
|
color: #eef8fb;
|
|
}
|
|
|
|
html[data-bs-theme="dark"] #status-card-consulta-agendado,
|
|
html[data-bs-theme="dark"] .legenda-item-agendado {
|
|
background-color: #2e2e1e;
|
|
border: 3px solid #4d4d2e;
|
|
color: #f7f7c4;
|
|
}
|
|
.calendar-legend {
|
|
margin-top: 8px;
|
|
display: flex;
|
|
gap: 8px;
|
|
justify-content: center;
|
|
} |