Compare commits

..

No commits in common. "176489f9fd51a47254f1880af5b727986dd50ee5" and "ef7ef938878caa35ddde9333c53a82e5238db62c" have entirely different histories.

5 changed files with 278 additions and 404 deletions

View File

@ -10,13 +10,15 @@ import isBetween from 'dayjs/plugin/isBetween';
import localeData from 'dayjs/plugin/localeData'; import localeData from 'dayjs/plugin/localeData';
import { Search, ChevronLeft, ChevronRight, Edit, Trash2, CheckCircle } from 'lucide-react'; import { Search, ChevronLeft, ChevronRight, Edit, Trash2, CheckCircle } from 'lucide-react';
import "../pages/style/Agendamento.css"; import "../pages/style/Agendamento.css";
import "../pages/style/FilaEspera.css"; import '../pages/style/FilaEspera.css';
import Spinner from "../components/Spinner.jsx"; import Spinner from '../components/Spinner.jsx';
dayjs.locale("pt-br");
dayjs.locale('pt-br');
dayjs.extend(isBetween); dayjs.extend(isBetween);
dayjs.extend(localeData); dayjs.extend(localeData);
const Agendamento = () => { const Agendamento = () => {
const navigate = useNavigate(); const navigate = useNavigate();
const { getAuthorizationHeader, user } = useAuth(); const { getAuthorizationHeader, user } = useAuth();
@ -26,23 +28,21 @@ const Agendamento = () => {
const ID_MEDICO_ESPECIFICO = "078d2a67-b4c1-43c8-ae32-c1e75bb5b3df"; const ID_MEDICO_ESPECIFICO = "078d2a67-b4c1-43c8-ae32-c1e75bb5b3df";
const [listaTodosAgendamentos, setListaTodosAgendamentos] = useState([]); const [listaTodosAgendamentos, setListaTodosAgendamentos] = useState([]);
const [selectedID, setSelectedId] = useState("0"); const [selectedID, setSelectedId] = useState('0');
const [filaEsperaData, setFilaEsperaData] = useState([]); const [filaEsperaData, setFilaEsperaData] = useState([]);
const [FiladeEspera, setFiladeEspera] = useState(false); const [FiladeEspera, setFiladeEspera] = useState(false);
const [PageNovaConsulta, setPageConsulta] = useState(false); const [PageNovaConsulta, setPageConsulta] = useState(false);
const [DictAgendamentosOrganizados, setAgendamentosOrganizados] = useState( const [DictAgendamentosOrganizados, setAgendamentosOrganizados] = useState({});
{}
);
const [showDeleteModal, setShowDeleteModal] = useState(false); const [showDeleteModal, setShowDeleteModal] = useState(false);
const [ListaDeMedicos, setListaDeMedicos] = useState([]); const [ListaDeMedicos, setListaDeMedicos] = useState([]);
const [FiltredTodosMedicos, setFiltredTodosMedicos] = useState([]); const [FiltredTodosMedicos, setFiltredTodosMedicos] = useState([]);
const [searchTermDoctor, setSearchTermDoctor] = useState(""); const [searchTermDoctor, setSearchTermDoctor] = useState('');
const [MedicoFiltrado, setMedicoFiltrado] = useState({ id: "vazio" }); const [MedicoFiltrado, setMedicoFiltrado] = useState({ id: "vazio" });
const [motivoCancelamento, setMotivoCancelamento] = useState(""); const [motivoCancelamento, setMotivoCancelamento] = useState("");
const [showSpinner, setShowSpinner] = useState(true); const [showSpinner, setShowSpinner] = useState(true);
const [waitlistSearch, setWaitlistSearch] = useState(""); const [waitlistSearch, setWaitlistSearch] = useState('');
const [waitSortKey, setWaitSortKey] = useState(null); const [waitSortKey, setWaitSortKey] = useState(null);
const [waitSortDir, setWaitSortDir] = useState("asc"); const [waitSortDir, setWaitSortDir] = useState('asc');
const [waitPage, setWaitPage] = useState(1); const [waitPage, setWaitPage] = useState(1);
const [waitPerPage, setWaitPerPage] = useState(10); const [waitPerPage, setWaitPerPage] = useState(10);
const [cacheMedicos, setCacheMedicos] = useState({}); const [cacheMedicos, setCacheMedicos] = useState({});
@ -52,7 +52,7 @@ const Agendamento = () => {
const [agendamentoParaEdicao, setAgendamentoParaEdicao] = useState(null); const [agendamentoParaEdicao, setAgendamentoParaEdicao] = useState(null);
const [quickJump, setQuickJump] = useState({ const [quickJump, setQuickJump] = useState({
month: currentDate.month(), month: currentDate.month(),
year: currentDate.year(), year: currentDate.year()
}); });
@ -72,84 +72,60 @@ const Agendamento = () => {
const data = await res.json(); const data = await res.json();
setListaTodosAgendamentos(data || []); setListaTodosAgendamentos(data || []);
} catch (err) { } catch (err) {
console.error("Erro ao buscar agendamentos", err); console.error('Erro ao buscar agendamentos', err);
setListaTodosAgendamentos([]); setListaTodosAgendamentos([]);
} finally { } finally {
setShowSpinner(false); setShowSpinner(false);
} }
}, [authHeader, ID_MEDICO_ESPECIFICO]); }, [authHeader, ID_MEDICO_ESPECIFICO]);
const updateAppointmentStatus = useCallback(
async (id, updates) => { const updateAppointmentStatus = useCallback(async (id, updates) => {
setShowSpinner(true); setShowSpinner(true);
const myHeaders = new Headers(); const myHeaders = new Headers();
myHeaders.append("Authorization", authHeader); myHeaders.append("Authorization", authHeader);
myHeaders.append("apikey", API_KEY); myHeaders.append("apikey", API_KEY);
myHeaders.append("Content-Type", "application/json"); myHeaders.append("Content-Type", "application/json");
myHeaders.append("Prefer", "return=representation"); myHeaders.append("Prefer", "return=representation");
const requestOptions = { const requestOptions = { method: 'PATCH', headers: myHeaders, body: JSON.stringify(updates) };
method: "PATCH",
headers: myHeaders,
body: JSON.stringify(updates),
};
try { try {
const response = await fetch( const response = await fetch(`https://yuanqfswhberkoevtmfr.supabase.co/rest/v1/appointments?id=eq.${id}`, requestOptions);
`https://yuanqfswhberkoevtmfr.supabase.co/rest/v1/appointments?id=eq.${id}`,
requestOptions
);
if (response.ok) { if (response.ok) {
await fetchAppointments(); await fetchAppointments();
return true; return true;
} else { } else {
console.error( console.error('Erro ao atualizar agendamento:', await response.text());
"Erro ao atualizar agendamento:",
await response.text()
);
return false; return false;
} }
} catch (error) { } catch (error) {
console.error("Erro de rede/servidor:", error); console.error('Erro de rede/servidor:', error);
return false; return false;
} finally { } finally {
setShowSpinner(false); setShowSpinner(false);
} }
}, }, [authHeader, fetchAppointments]);
[authHeader, fetchAppointments]
);
const deleteConsulta = useCallback(
async (id) => { const deleteConsulta = useCallback(async (id) => {
const success = await updateAppointmentStatus(id, { const success = await updateAppointmentStatus(id, { status: "cancelled", cancellation_reason: motivoCancelamento, updated_at: new Date().toISOString() });
status: "cancelled",
cancellation_reason: motivoCancelamento,
updated_at: new Date().toISOString(),
});
if (success) { if (success) {
setShowDeleteModal(false); setShowDeleteModal(false);
setMotivoCancelamento(""); setMotivoCancelamento("");
setSelectedId("0"); setSelectedId('0');
} else { } else {
alert("Falha ao cancelar a consulta."); alert("Falha ao cancelar a consulta.");
} }
}, }, [motivoCancelamento, updateAppointmentStatus]);
[motivoCancelamento, updateAppointmentStatus]
);
const confirmConsulta = useCallback(
async (id) => { const confirmConsulta = useCallback(async (id) => {
const success = await updateAppointmentStatus(id, { const success = await updateAppointmentStatus(id, { status: "agendado", cancellation_reason: null, updated_at: new Date().toISOString() });
status: "agendado",
cancellation_reason: null,
updated_at: new Date().toISOString(),
});
if (success) { if (success) {
setSelectedId("0"); setSelectedId('0');
} else { } else {
alert("Falha ao reverter o cancelamento."); alert("Falha ao reverter o cancelamento.");
} }
}, }, [updateAppointmentStatus]);
[updateAppointmentStatus]
);
useEffect(() => { useEffect(() => {
if(authHeader) { if(authHeader) {
@ -182,7 +158,7 @@ const Agendamento = () => {
const patientIdsToFetch = new Set(); const patientIdsToFetch = new Set();
const doctorIdsToFetch = new Set(); const doctorIdsToFetch = new Set();
appointmentsToShow.forEach((ag) => { appointmentsToShow.forEach(ag => {
if (ag.patient_id && !cachePacientes[ag.patient_id]) { if (ag.patient_id && !cachePacientes[ag.patient_id]) {
patientIdsToFetch.add(ag.patient_id); patientIdsToFetch.add(ag.patient_id);
} }
@ -205,14 +181,11 @@ const Agendamento = () => {
} }
if (doctorIdsToFetch.size > 0) { if (doctorIdsToFetch.size > 0) {
const query = `id=in.(${Array.from(doctorIdsToFetch).join(",")})`; const query = `id=in.(${Array.from(doctorIdsToFetch).join(',')})`;
fetchPromises.push( fetchPromises.push(
fetch( fetch(`https://yuanqfswhberkoevtmfr.supabase.co/rest/v1/doctors?${query}&select=id,full_name`, {
`https://yuanqfswhberkoevtmfr.supabase.co/rest/v1/doctors?${query}&select=id,full_name`, headers: { apikey: API_KEY, Authorization: authHeader }
{ }).then(res => res.json())
headers: { apikey: API_KEY, Authorization: authHeader },
}
).then((res) => res.json())
); );
} else { } else {
fetchPromises.push(Promise.resolve(null)); fetchPromises.push(Promise.resolve(null));
@ -221,11 +194,10 @@ const Agendamento = () => {
const [newPatients, newDoctors] = await Promise.all(fetchPromises); const [newPatients, newDoctors] = await Promise.all(fetchPromises);
const updatedPatientCache = { ...cachePacientes }; const updatedPatientCache = { ...cachePacientes };
if (newPatients) if (newPatients) newPatients.forEach(p => updatedPatientCache[p.id] = p);
newPatients.forEach((p) => (updatedPatientCache[p.id] = p));
const updatedDoctorCache = { ...cacheMedicos }; const updatedDoctorCache = { ...cacheMedicos };
if (newDoctors) newDoctors.forEach((d) => (updatedDoctorCache[d.id] = d)); if (newDoctors) newDoctors.forEach(d => updatedDoctorCache[d.id] = d);
setCachePacientes(updatedPatientCache); setCachePacientes(updatedPatientCache);
setCacheMedicos(updatedDoctorCache); setCacheMedicos(updatedDoctorCache);
@ -241,29 +213,22 @@ const Agendamento = () => {
const agendamentoMelhorado = { const agendamentoMelhorado = {
...agendamento, ...agendamento,
medico_nome: medico.full_name || "N/A", medico_nome: medico.full_name || 'N/A',
paciente_nome: paciente.full_name || "N/A", paciente_nome: paciente.full_name || 'N/A',
paciente_cpf: paciente.cpf || "N/A", paciente_cpf: paciente.cpf || 'N/A'
}; };
if (agendamento.status === "requested") { if (agendamento.status === "requested") {
newFila.push({ newFila.push({ agendamento: agendamentoMelhorado, Infos: agendamentoMelhorado });
agendamento: agendamentoMelhorado,
Infos: agendamentoMelhorado,
});
} else { } else {
const DiaAgendamento = dayjs(agendamento.scheduled_at).format( const DiaAgendamento = dayjs(agendamento.scheduled_at).format("YYYY-MM-DD");
"YYYY-MM-DD"
);
if (!newDict[DiaAgendamento]) newDict[DiaAgendamento] = []; if (!newDict[DiaAgendamento]) newDict[DiaAgendamento] = [];
newDict[DiaAgendamento].push(agendamentoMelhorado); newDict[DiaAgendamento].push(agendamentoMelhorado);
} }
} }
for (const key in newDict) { for (const key in newDict) {
newDict[key].sort( newDict[key].sort((a, b) => new Date(a.scheduled_at) - new Date(b.scheduled_at));
(a, b) => new Date(a.scheduled_at) - new Date(b.scheduled_at)
);
} }
setAgendamentosOrganizados(newDict); setAgendamentosOrganizados(newDict);
@ -284,7 +249,7 @@ const Agendamento = () => {
const handleSearchMedicos = (term) => { const handleSearchMedicos = (term) => {
setSearchTermDoctor(term); setSearchTermDoctor(term);
if (term.trim()) { if (term.trim()) {
const filtered = ListaDeMedicos.filter((medico) => const filtered = ListaDeMedicos.filter(medico =>
medico.nomeMedico.toLowerCase().includes(term.toLowerCase()) medico.nomeMedico.toLowerCase().includes(term.toLowerCase())
); );
setFiltredTodosMedicos(filtered); setFiltredTodosMedicos(filtered);
@ -296,11 +261,11 @@ const Agendamento = () => {
const generateDateGrid = () => { const generateDateGrid = () => {
const grid = []; const grid = [];
const startOfMonth = currentDate.startOf("month"); const startOfMonth = currentDate.startOf('month');
let currentDay = startOfMonth.subtract(startOfMonth.day(), "day"); let currentDay = startOfMonth.subtract(startOfMonth.day(), 'day');
for (let i = 0; i < 42; i++) { for (let i = 0; i < 42; i++) {
grid.push(currentDay); grid.push(currentDay);
currentDay = currentDay.add(1, "day"); currentDay = currentDay.add(1, 'day');
} }
return grid; return grid;
}; };
@ -328,62 +293,46 @@ const DeleteModal = () => (
</div> </div>
</div> </div>
</div> </div>
); );
useEffect(() => { useEffect(() => {
setQuickJump({ setQuickJump({
month: currentDate.month(), month: currentDate.month(),
year: currentDate.year(), year: currentDate.year()
}); });
}, [currentDate]); }, [currentDate]);
const filaEsperaFiltrada = useMemo(() => { const filaEsperaFiltrada = useMemo(() => {
if (!waitlistSearch.trim()) return filaEsperaData; if (!waitlistSearch.trim()) return filaEsperaData;
const term = waitlistSearch.toLowerCase(); const term = waitlistSearch.toLowerCase();
return filaEsperaData.filter( return filaEsperaData.filter(item =>
(item) => (item?.Infos?.paciente_nome?.toLowerCase() || '').includes(term) ||
(item?.Infos?.paciente_nome?.toLowerCase() || "").includes(term) || (item?.Infos?.paciente_cpf?.toLowerCase() || '').includes(term) ||
(item?.Infos?.paciente_cpf?.toLowerCase() || "").includes(term) || (item?.Infos?.medico_nome?.toLowerCase() || '').includes(term)
(item?.Infos?.medico_nome?.toLowerCase() || "").includes(term)
); );
}, [waitlistSearch, filaEsperaData]); }, [waitlistSearch, filaEsperaData]);
const applySortingWaitlist = useCallback( const applySortingWaitlist = useCallback((arr) => {
(arr) => {
if (!Array.isArray(arr) || !waitSortKey) return arr; if (!Array.isArray(arr) || !waitSortKey) return arr;
const copy = [...arr]; const copy = [...arr];
const key = waitSortKey; const key = waitSortKey;
const dir = waitSortDir === "asc" ? 1 : -1; const dir = waitSortDir === 'asc' ? 1 : -1;
copy.sort((a, b) => { copy.sort((a, b) => {
const valA = const valA = key === 'data' ? new Date(a.agendamento.scheduled_at) : (a.Infos?.[`${key}_nome`] || '');
key === "data" const valB = key === 'data' ? new Date(b.agendamento.scheduled_at) : (b.Infos?.[`${key}_nome`] || '');
? new Date(a.agendamento.scheduled_at)
: a.Infos?.[`${key}_nome`] || "";
const valB =
key === "data"
? new Date(b.agendamento.scheduled_at)
: b.Infos?.[`${key}_nome`] || "";
if (valA < valB) return -1 * dir; if (valA < valB) return -1 * dir;
if (valA > valB) return 1 * dir; if (valA > valB) return 1 * dir;
return 0; return 0;
}); });
return copy; return copy;
}, }, [waitSortKey, waitSortDir]);
[waitSortKey, waitSortDir]
);
const filaEsperaOrdenada = useMemo( const filaEsperaOrdenada = useMemo(() => applySortingWaitlist(filaEsperaFiltrada), [filaEsperaFiltrada, applySortingWaitlist]);
() => applySortingWaitlist(filaEsperaFiltrada), const waitTotalPages = Math.ceil(filaEsperaOrdenada.length / waitPerPage) || 1;
[filaEsperaFiltrada, applySortingWaitlist]
);
const waitTotalPages =
Math.ceil(filaEsperaOrdenada.length / waitPerPage) || 1;
const waitIndiceInicial = (waitPage - 1) * waitPerPage; const waitIndiceInicial = (waitPage - 1) * waitPerPage;
const waitIndiceFinal = waitIndiceInicial + waitPerPage; const waitIndiceFinal = waitIndiceInicial + waitPerPage;
const filaEsperaPaginada = filaEsperaOrdenada.slice( const filaEsperaPaginada = filaEsperaOrdenada.slice(waitIndiceInicial, waitIndiceFinal);
waitIndiceInicial,
waitIndiceFinal
);
const gerarNumerosWaitPages = () => { const gerarNumerosWaitPages = () => {
const paginas = []; const paginas = [];
@ -395,12 +344,10 @@ const DeleteModal = () => (
return paginas; return paginas;
}; };
useEffect(() => { useEffect(() => { setWaitPage(1); }, [waitlistSearch, waitSortKey, waitSortDir]);
setWaitPage(1);
}, [waitlistSearch, waitSortKey, waitSortDir]);
const handleQuickJumpChange = (type, value) => { const handleQuickJumpChange = (type, value) => {
setQuickJump((prev) => ({ ...prev, [type]: Number(value) })); setQuickJump(prev => ({ ...prev, [type]: Number(value) }));
}; };
const applyQuickJump = () => { const applyQuickJump = () => {

View File

@ -169,7 +169,7 @@ export default function FinanceiroDashboard() {
recebido += valorLiquido; recebido += valorLiquido;
descontos += p.desconto; descontos += p.desconto;
} else { } else {
aReceber += valorLiquido; aReceber += p.valor;
} }
}); });
@ -244,7 +244,8 @@ export default function FinanceiroDashboard() {
<option value="vencido">Vencido</option> <option value="vencido">Vencido</option>
</select> </select>
<button <button
className="btn btn-primary" className="action-btn"
style={{ background: "#3b82f6", color: "#fff", borderColor: "#3b82f6" }}
onClick={() => { onClick={() => {
setModalPagamento({ setModalPagamento({
paciente: { nome:"", convenio: CONVENIOS_LIST[0] }, paciente: { nome:"", convenio: CONVENIOS_LIST[0] },
@ -283,7 +284,7 @@ export default function FinanceiroDashboard() {
<tbody> <tbody>
{filteredPagamentos.map(p => ( {filteredPagamentos.map(p => (
<tr key={p.id}> <tr key={p.id}>
<td style={{ fontWeight: 600 }}>{p.paciente.nome}</td> <td>{p.paciente.nome}</td>
<td>{p.paciente.convenio}</td> <td>{p.paciente.convenio}</td>
<td>{formatCurrency(p.valor)}</td> <td>{formatCurrency(p.valor)}</td>
<td>{formatCurrency(p.desconto)}</td> <td>{formatCurrency(p.desconto)}</td>
@ -294,16 +295,16 @@ export default function FinanceiroDashboard() {
<td> <td>
<div className="action-group"> <div className="action-group">
<button <button
className="btn-view" className="action-btn"
onClick={() => { setModalPagamento({...p}); setNovoPagamento(false); }} onClick={() => { setModalPagamento({...p}); setNovoPagamento(false); }}
> >
<i className="bi bi-eye me-1"></i> Ver / Editar Ver / Editar
</button> </button>
<button <button
className="btn-delete" className="action-btn delete"
onClick={() => handleDelete(p.id)} onClick={() => handleDelete(p.id)}
> >
<i className="bi bi-trash me-1"></i> Excluir Excluir
</button> </button>
</div> </div>
</td> </td>
@ -415,14 +416,15 @@ export default function FinanceiroDashboard() {
</div> </div>
<div className="modal-footer"> <div className="modal-footer">
<button className="btn-view" onClick={() => handleSave(modalPagamento)}> <button className="action-btn" onClick={() => handleSave(modalPagamento)}>
<i className="bi bi-check-circle me-1"></i> Salvar Salvar
</button> </button>
<button <button
className="btn-delete" className="action-btn"
onClick={closeModal} onClick={closeModal}
style={{ borderColor: '#d1d5db', color: '#4b5563' }}
> >
<i className="bi bi-x-circle me-1"></i> Cancelar Cancelar
</button> </button>
</div> </div>
</div> </div>

View File

@ -273,7 +273,6 @@
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
margin: 15px 0 20px; margin: 15px 0 20px;
color: #fff;
} }
.tabs-agenda-fila { .tabs-agenda-fila {

View File

@ -39,7 +39,6 @@
margin: 0 0 8px 0; margin: 0 0 8px 0;
font-size: 14px; font-size: 14px;
font-weight: 500; font-weight: 500;
color: #fff;
opacity: 0.9; opacity: 0.9;
} }
@ -108,79 +107,35 @@
} }
/* Botões de ação */ /* Botões de ação */
.action-group {
display: flex;
gap: 8px;
align-items: center;
}
.btn-view { .action-btn {
background-color: #E6F2FF !important;
color: #004085 !important;
border: 1px solid #B8D4F0 !important;
padding: 0.375rem 0.75rem;
font-size: 0.875rem;
border-radius: 6px;
cursor: pointer; cursor: pointer;
transition: all 0.15s ease-in-out; padding: 6px 12px;
text-decoration: none;
display: inline-block;
text-align: center;
}
.btn-view:hover {
background-color: #D1E7FF !important;
border-color: #9EC5FE !important;
}
.btn-edit {
background-color: #FFF3CD !important;
color: #856404 !important;
border: 1px solid #FFEAA7 !important;
padding: 0.375rem 0.75rem;
font-size: 0.875rem;
border-radius: 6px; border-radius: 6px;
cursor: pointer; border: 1px solid #d7e6fb;
transition: all 0.15s ease-in-out; background: #fff;
text-decoration: none; transition: all 0.2s ease;
display: inline-block; font-size: 13px;
text-align: center;
} }
.btn-edit:hover { .action-btn:hover {
background-color: #FFEEBA !important; background: #f6f9fc;
border-color: #FFE087 !important; border-color: #93c5fd;
} }
.btn-delete:hover { .action-btn.delete {
background-color: #F1B0B7 !important; border-color: #fca5a5;
border-color: #ED969E !important; color: #b91c1c;
}
.btn-delete {
background-color: #F8D7DA !important;
color: #721C24 !important;
border: 1px solid #F5C6CB !important;
padding: 0.375rem 0.75rem;
font-size: 0.875rem;
border-radius: 6px;
cursor: pointer;
transition: all 0.15s ease-in-out;
text-decoration: none;
display: inline-block;
text-align: center;
} }
html[data-bs-theme="dark"] .btn-view { .action-btn.delete:hover {
background-color: #1e3a8a !important; background: #fee2e2;
color: #e0e0e0 !important; border-color: #ef4444;
border-color: #374151 !important;
}
html[data-bs-theme="dark"] .btn-edit {
background-color: #78350f !important;
color: #fef3c7 !important;
border-color: #374151 !important;
}
html[data-bs-theme="dark"] .btn-delete {
background-color: #7f1d1d !important;
color: #fee2e2 !important;
border-color: #374151 !important;
} }
/* Badges de status */ /* Badges de status */
@ -227,7 +182,7 @@ html[data-bs-theme="dark"] .btn-delete {
padding: 24px; padding: 24px;
width: 100%; width: 100%;
max-width: 550px; max-width: 550px;
max-height: 85vh; max-height: 90vh;
overflow-y: auto; overflow-y: auto;
box-sizing: border-box; box-sizing: border-box;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
@ -253,12 +208,6 @@ html[data-bs-theme="dark"] .btn-delete {
gap: 16px; gap: 16px;
} }
.modal-card .input-field,
.modal-card .select-field,
.modal-card textarea {
width: 100%;
}
.form-group { .form-group {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -292,23 +241,12 @@ html[data-bs-theme="dark"] .btn-delete {
gap: 10px; gap: 10px;
margin-top: 24px; margin-top: 24px;
} }
.input-field,
.select-field,
textarea {
padding: 10px 12px;
border: 1px solid #d1d5db;
border-radius: 8px;
box-sizing: border-box;
font-size: 14px;
transition: border-color 0.2s, box-shadow 0.2s;
background-color: #fff;
}
/* Inputs e selects */ /* Inputs e selects */
.input-field, .input-field,
.select-field, .select-field,
textarea { textarea {
width: 100%;
padding: 10px 12px; padding: 10px 12px;
border: 1px solid #d1d5db; border: 1px solid #d1d5db;
border-radius: 8px; border-radius: 8px;
@ -331,18 +269,6 @@ textarea {
min-height: 80px; min-height: 80px;
} }
.financeiro-wrap .input-field:not(.modal-card *),
.financeiro-wrap .select-field:not(.modal-card *),
.financeiro-wrap textarea:not(.modal-card *) {
width: 30%;
}
.modal-card .input-field,
.modal-card .select-field,
.modal-card textarea {
width: 100%;
}
/* Mensagem quando não há pagamentos */ /* Mensagem quando não há pagamentos */
.empty { .empty {
text-align: center; text-align: center;

View File

@ -70,10 +70,10 @@
} }
/* Cores dos ícones */ /* Cores dos ícones */
.stat-icon-wrapper.blue { background-color: #1D3B88; } .stat-icon-wrapper.blue { background-color: #5d5dff; }
.stat-icon-wrapper.green { background-color: #399CE5; } .stat-icon-wrapper.green { background-color: #30d158; }
.stat-icon-wrapper.purple { background-color: #5F5DF2; } .stat-icon-wrapper.purple { background-color: #a272ff; }
.stat-icon-wrapper.orange { background-color: #051AFF; } .stat-icon-wrapper.orange { background-color: #f1952e; }
/* Seção de Ações Rápidas */ /* Seção de Ações Rápidas */
.quick-actions h2 { .quick-actions h2 {