Can now add pets in the appointments page.

This commit is contained in:
augmentedpotato
2026-04-07 23:53:48 -06:00
parent 83477904be
commit 2469c07fef
2 changed files with 164 additions and 10 deletions

View File

@@ -1351,6 +1351,44 @@ body {
accent-color: orange;
}
.appt-add-pet-btn {
display: inline-block;
margin-top: 0.5rem;
padding: 0.4rem 0.85rem;
background: none;
border: 1.5px solid orange;
border-radius: 6px;
color: orange;
font-size: 0.875rem;
font-weight: 600;
cursor: pointer;
transition: background 0.15s, color 0.15s;
}
.appt-add-pet-btn:hover {
background: orange;
color: white;
}
.appt-modal-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.45);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.appt-modal {
background: white;
border-radius: 12px;
padding: 2rem;
width: 100%;
max-width: 420px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.appt-link {
color: orange;
font-weight: 600;