Add citas module: scheduling, calendar, blocked schedules

This commit is contained in:
2026-04-08 00:48:36 -06:00
parent e19eb205db
commit 91da97685f
21 changed files with 3406 additions and 4 deletions

View File

@@ -604,8 +604,8 @@ body {
}
/* ============================================
SEARCH & FILTERS
============================================ */
SEARCH & FILTERS
============================================ */
.search-box {
position: relative;
max-width: 300px;
@@ -632,6 +632,42 @@ body {
align-items: center;
}
/* ============================================
DROPDOWN MENU IN SIDEBAR
============================================ */
.sidebar-nav .dropdown-menu {
position: static;
background: white;
border: 1px solid var(--border);
border-radius: 10px;
padding: 0.5rem;
margin-left: 1rem;
box-shadow: 0 5px 20px var(--shadow);
}
.sidebar-nav .dropdown-item {
padding: 0.5rem 1rem;
border-radius: 8px;
color: var(--text);
font-weight: 500;
transition: all 0.3s ease;
}
.sidebar-nav .dropdown-item:hover {
background: rgba(248, 180, 196, 0.2);
color: var(--primary-dark);
}
.sidebar-nav .dropdown-item.active {
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: white;
}
.sidebar-nav .dropdown-divider {
margin: 0.5rem 0;
border-color: var(--border);
}
/* ============================================
RESPONSIVE
============================================ */