/* Variables CSS para consistencia */
:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
}

/* Reglas globales para prevenir overflow horizontal */
.dashboard-container {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.dashboard-container * {
    box-sizing: border-box;
}

/* Estilos para el nuevo dashboard reorganizado */

/* Header minimalista del dashboard */
.dashboard-header-minimal {
    margin-bottom: 1.5rem;
}

/* Debug info */
.debug-info {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.debug-label {
    color: #6b7280;
    font-weight: 500;
}

.debug-value {
    color: #1f2937;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    background: #e5e7eb;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.header-content-minimal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.greeting-title-minimal {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin: 0;
    flex: 1;
    min-width: 0;
}

.header-time-minimal {
    text-align: right;
    flex-shrink: 0;
    min-width: 0;
    max-width: 100%;
}

.current-time-minimal {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    color: var(--gray-700);
    margin: 0;
}

.current-date-minimal {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
    text-transform: capitalize;
}

/* Contenedor de acciones con pestañas */
.actions-container {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Navegación de pestañas */
.tabs-navigation {
    display: flex;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    gap: 0;
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-right: 1px solid var(--gray-200);
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.tab-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 -2px 0 var(--primary-color) inset;
}

.tab-btn i {
    font-size: 1.1rem;
}

/* Contenido de pestañas */
.tab-content {
    display: none;
    padding: 1rem 0.5rem;
    animation: fadeInUp 0.3s ease;
}

.tab-content.active {
    display: block;
}

/* Acciones del calendario */
.calendar-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-btn.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.action-btn.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.action-btn.secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.action-btn.secondary:hover {
    background: var(--gray-200);
    color: var(--gray-800);
    transform: translateY(-1px);
}

/* Métricas mejoradas */
.metrics-section {
    padding: 0;
}

.metrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.metrics-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
}

.metrics-title i {
    color: var(--primary-color);
}

.metrics-period {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.period-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    background: white;
    color: var(--gray-700);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.period-select:hover {
    border-color: var(--primary-color);
}

.period-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Gráficos de métricas */
.metrics-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.chart-container {
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.chart-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 1rem 0;
}

.chart-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: white;
    border-radius: var(--border-radius);
    border: 2px dashed var(--gray-300);
    color: var(--gray-500);
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content-minimal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .header-time-minimal {
        text-align: right;
        flex-shrink: 0;
    }
    
    .greeting-title-minimal {
        font-size: 1.4rem;
        flex: 1;
    }
    
    .current-time-minimal {
        font-size: 1.1rem;
    }
    
    .current-date-minimal {
        font-size: 0.75rem;
    }
    
    .tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .tab-btn span {
        display: none;
    }
    
    .tab-btn i {
        font-size: 1.2rem;
    }
    
    .calendar-actions {
        flex-direction: column;
    }
    
    .action-btn {
        justify-content: center;
    }
    
    .metrics-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .metrics-charts {
        grid-template-columns: 1fr;
    }
}

/* Animaciones suaves */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0, -8px, 0); }
    70% { transform: translate3d(0, -4px, 0); }
    90% { transform: translate3d(0, -2px, 0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease-out; }
.slide-in-right { animation: slideInRight 0.5s ease-out; }
.pulse-animation { animation: pulse 2s infinite; }
.bounce-animation { animation: bounce 1s; }

/* Mejoras en las métricas */
.metric-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.metric-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
    transform: scale(1.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.metric-change.positive {
    background-color: #dcfce7;
    color: #166534;
}

.metric-change.negative {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Calendario mejorado */
.calendar-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.calendar-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-800);
    margin: 0;
}

.calendar-nav-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.calendar-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    min-width: 0;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.calendar-day-header {
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-day {
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid transparent;
}

.calendar-day:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.calendar-day.today {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover)) !important;
    color: white !important;
    border: 3px solid var(--primary-color) !important;
    box-shadow: 0 0 0 1px var(--primary-color) !important;
}

/* Estilo más específico para asegurar que se aplique */
.calendar-day.today.occupied,
.calendar-day.today.blocked,
.calendar-day.today.free {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover)) !important;
    color: white !important;
    border: 3px solid var(--primary-color) !important;
    box-shadow: 0 0 0 1px var(--primary-color) !important;
}

/* Estilo específico para today blocked - máxima prioridad */
.calendar-day.today.blocked {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover)) !important;
    color: white !important;
    border: 3px solid var(--primary-color) !important;
    box-shadow: 0 0 0 1px var(--primary-color) !important;
}

.calendar-day.today.blocked span {
    color: white !important;
    font-weight: bold !important;
}

.calendar-day.today.blocked:hover {
    background: linear-gradient(135deg, var(--primary-hover), #1d4ed8) !important;
    color: white !important;
    border: 3px solid var(--primary-hover) !important;
    transform: scale(1.05) !important;
    transition: all 0.2s ease !important;
}

.calendar-day.occupied {
    background: white;
    color: #6b7280;
    border-color: #e5e7eb;
}

.calendar-day.blocked {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border-color: #fca5a5 !important;
    border-width: 2px !important;
    border-style: solid !important;
}

/* Estilo más específico para días bloqueados */
.calendar-day.blocked span {
    color: #dc2626 !important;
    font-weight: bold !important;
}

/* Hover effect para días bloqueados */
.calendar-day.blocked:hover {
    background: #fee2e2 !important;
    border-color: #f87171 !important;
    transform: scale(1.05) !important;
    transition: all 0.2s ease !important;
}

.calendar-day.free {
    background: white;
    color: #6b7280;
    border-color: #e5e7eb;
}

.calendar-day-indicator {
    position: absolute;
    bottom: 0.25rem;
    right: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.6;
}

/* Círculo naranja para mostrar número de eventos */
.calendar-day-events-count {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #f97316;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Lista de reservas mejorada */
.appointment-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.appointment-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.appointment-card:hover::before {
    transform: scaleY(1);
}

.appointment-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.appointment-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.appointment-status {
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.appointment-status.occupied {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.appointment-status.blocked {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

/* ===== ESTILOS SIMPLIFICADOS PARA SELECTOR DE AGENDAS ===== */

/* ===== CARRUSEL HORIZONTAL PARA SELECTOR DE AGENDAS ===== */
.agenda-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 -16px; /* Extender para que los botones de navegación no se corten */
    padding: 0 16px;
}

/* Contenedor principal del selector de agendas */
#agenda-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
    width: 100%;
    max-width: 100%;
    min-height: 80px;
    align-items: flex-start;
    scroll-behavior: smooth;
    position: relative;
}

/* Estilos personalizados para la scrollbar */
#agenda-tabs::-webkit-scrollbar {
    height: 6px;
}

#agenda-tabs::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

#agenda-tabs::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

#agenda-tabs::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Botones de navegación del carrusel */
.agenda-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.agenda-carousel-nav:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.agenda-carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.agenda-carousel-nav:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.agenda-carousel-nav.prev {
    left: 0;
}

.agenda-carousel-nav.next {
    right: 0;
}

.agenda-carousel-nav i {
    font-size: 12px;
    color: #64748b;
}

.agenda-carousel-nav:hover i {
    color: #334155;
}

/* Responsive para el carrusel */
@media (max-width: 768px) {
    .agenda-carousel-container {
        margin: 0 -8px;
        padding: 0 8px;
    }
    
    .agenda-carousel-nav {
        width: 28px;
        height: 28px;
    }
    
    .agenda-carousel-nav i {
        font-size: 10px;
    }
    
    #agenda-tabs {
        gap: 8px;
        padding: 8px 0;
        min-height: 70px;
    }
}

@media (max-width: 480px) {
    .agenda-carousel-container {
        margin: 0 -4px;
        padding: 0 4px;
    }
    
    .agenda-carousel-nav {
        width: 24px;
        height: 24px;
    }
    
    .agenda-carousel-nav i {
        font-size: 9px;
    }
    
    #agenda-tabs {
        gap: 6px;
        padding: 6px 0;
        min-height: 60px;
    }
}

/* Mensaje cuando no hay agendas */
#no-agendas-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: #6b7280;
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    margin: 20px 0;
}

#no-agendas-message i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #9ca3af;
}

#no-agendas-message p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

#no-agendas-message p:last-child {
    font-size: 14px;
    margin-top: 8px;
    color: #6b7280;
}

/* Botones de agenda - Estilos minimalistas */
.agenda-tab {
    min-width: 140px !important;
    max-width: 180px !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    flex-shrink: 0 !important;
    position: relative !important;
    white-space: nowrap !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #4b5563 !important;
    text-align: left !important;
    display: block !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    outline: none !important;
    text-decoration: none !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.agenda-tab:hover {
    background: #f9fafb !important;
    border-color: #d1d5db !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
}

.agenda-tab.active {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.15) !important;
}

.agenda-tab:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.agenda-tab:disabled:hover {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Estados especiales - Minimalistas */
.agenda-tab.needs-config {
    background: #fffbeb !important;
    border-color: #fbbf24 !important;
    color: #92400e !important;
}

.agenda-tab.needs-config:hover {
    background: #fef3c7 !important;
    border-color: #f59e0b !important;
    color: #78350f !important;
}

.agenda-tab.needs-config.active {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    color: white !important;
}

.agenda-tab.configured {
    background: #f0fdf4 !important;
    border-color: #22c55e !important;
    color: #166534 !important;
}

.agenda-tab.configured:hover {
    background: #dcfce7 !important;
    border-color: #16a34a !important;
    color: #14532d !important;
}

.agenda-tab.configured.active {
    background: #22c55e !important;
    border-color: #22c55e !important;
    color: white !important;
}

.agenda-tab.expired {
    background: #fef2f2 !important;
    border-color: #ef4444 !important;
    color: #991b1b !important;
    opacity: 0.8 !important;
}

.agenda-tab.expired:hover {
    background: #fee2e2 !important;
    border-color: #dc2626 !important;
    color: #7f1d1d !important;
}

.agenda-tab.expired.active {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: white !important;
}

/* Contenido interno del botón - Minimalista */
.agenda-tab-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    width: 100% !important;
}

.agenda-tab-name {
    font-size: 13px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 1px !important;
    width: 100% !important;
    line-height: 1.2 !important;
}

.agenda-tab-stats {
    font-size: 10px !important;
    opacity: 0.7 !important;
    width: 100% !important;
}

/* Responsive - Minimalista */
@media (max-width: 768px) {
    .agenda-tab {
        min-width: 120px;
        max-width: 160px;
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .agenda-tab-name {
        font-size: 12px;
    }
    
    .agenda-tab-stats {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .agenda-tab {
        min-width: 100px;
        max-width: 140px;
        padding: 5px 8px;
        font-size: 11px;
    }
    
    .agenda-tab-name {
        font-size: 11px;
    }
    
    .agenda-tab-stats {
        font-size: 8px;
    }
}

/* Panel de acciones rápidas */
.quick-actions {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.quick-action-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.quick-action-btn.secondary {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    color: var(--gray-700);
}

.quick-action-btn.secondary:hover {
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    color: var(--gray-800);
}

/* Vista semanal del calendario */
.week-view {
    display: none;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    min-width: 0;
}

.week-day {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 0.75rem;
    min-height: 150px;
    min-width: 0;
    flex: 1;
}

.week-day-header {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-100);
    text-align: center;
}

.week-day.today .week-day-header {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Filtros y búsqueda */
.filters-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.filter-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-input {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
}

.filter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .metric-card { 
        padding: 0.5rem; 
        min-height: auto;
        text-align: center;
    }
    .metric-value { 
        font-size: 1.25rem; 
        line-height: 1;
    }
    .metric-icon {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }
    .metric-label {
        font-size: 0.5rem;
        line-height: 1.2;
    }
    .metric-change {
        font-size: 0.5rem;
        padding: 0.125rem 0.25rem;
    }
    .calendar-container { padding: 1rem; }
    .calendar-title { font-size: 1.5rem; }
    .appointment-card { padding: 1rem; }
    .filter-group { flex-direction: column; align-items: stretch; }
    .filter-input, .filter-select { width: 100%; }
    
    /* Header en móviles pequeños */
    .greeting-title-minimal {
        font-size: 1.5rem;
    }
    
    .current-time-minimal {
        font-size: 1.25rem;
    }
    
    /* Vista semanal en móviles */
    .week-view {
        gap: 0.25rem;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .week-day {
        padding: 0.5rem;
        min-height: 120px;
        min-width: 0;
        flex: 1;
    }
    .week-day-header {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.25rem;
    }
    
    /* Calendario en móviles pequeños */
    .calendar-grid {
        gap: 0.25rem;
    }
    
    .calendar-day {
        padding: 0.25rem;
        font-size: 0.875rem;
    }
}

/* Móviles muy pequeños - tarjetas ultra compactas */
@media (max-width: 480px) {
    .metric-card { 
        padding: 0.375rem; 
        min-height: auto;
    }
    .metric-value { 
        font-size: 1rem; 
        line-height: 1;
    }
    .metric-icon {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.75rem;
        margin-bottom: 0.125rem;
    }
    .metric-label {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    .metric-change {
        font-size: 0.8rem;
        padding: 0.125rem 0.25rem;
        margin-top: 0.125rem;
    }
    
    /* Vista semanal en móviles muy pequeños */
    .week-view {
        gap: 0.125rem;
        overflow-x: hidden;
    }
    .week-day {
        padding: 0.375rem;
        min-height: 100px;
        min-width: 0;
        flex: 1;
    }
    .week-day-header {
        font-size: 0.625rem;
        margin-bottom: 0.25rem;
        padding-bottom: 0.125rem;
    }
}

/* Scrollbar personalizado */
.scrollbar-hidden {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hidden::-webkit-scrollbar {
    display: none;
}

/* ========================================
   ESTILOS MINIMALISTAS INTEGRADOS
   ======================================== */

/* Selector de Agendas Minimalista */
.agenda-selector-container {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.agenda-selector-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.agenda-selector-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
    flex: 1;
    min-width: 0;
}

.agenda-counter {
    font-size: 12px;
    color: var(--gray-500);
    margin-left: 8px;
    font-weight: 400;
}

.btn-create-agenda {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--gray-300);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.btn-create-agenda:hover {
    background: var(--gray-50);
    border-color: var(--primary-color);
}

/* Estilos duplicados eliminados - usar los estilos simplificados de arriba */

/* Botones de Scroll Sutiles */
.agenda-tabs-scroll-indicators {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
}

.scroll-btn {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: all;
    font-size: 10px;
    color: var(--gray-500);
}

.scroll-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.scroll-btn:first-child {
    left: -12px;
}

.scroll-btn:last-child {
    right: -12px;
}

/* Panel de Reservas Minimalista */
.appointments-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.panel-header {
    padding: 10px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.panel-header:hover {
    background: var(--gray-100);
}

.panel-content {
    padding: 16px;
    max-height: 400px;
    overflow-y: auto;
}

/* Filtros Rápidos Minimalistas */
.quick-filters {
    display: flex;
    gap: 4px;
    background: var(--white);
    padding: 2px;
    border-radius: var(--border-radius-sm);
    flex-wrap: wrap;

}

.filter-btn {
    padding: 4px 8px;
    border: none;
    background: transparent;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.filter-btn:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Métricas Minimalistas */
.metrics-section {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.metrics-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.metrics-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
    flex: 1;
    min-width: 0;
}

.metric-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    transition: all 0.2s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.metric-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.metric-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.metric-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.metric-label {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 4px;
}

.metric-change {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    font-weight: 500;
}

.metric-change.positive {
    color: #059669;
}

.metric-change.negative {
    color: #dc2626;
}

/* Botones de Acción Rápida Minimalistas */
.quick-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.quick-action-btn {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.quick-action-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.quick-action-btn:not(.secondary) {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.quick-action-btn:not(.secondary):hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

/* Títulos Minimalistas */
.title-primary {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 4px 0;
}

.title-subsection {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Grid Responsivo */
.grid {
    display: grid;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Estados de Focus Accesibles */
.agenda-tab:focus,
.filter-btn:focus,
.scroll-btn:focus,
.quick-action-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 1px;
}

/* Iconos Más Pequeños */
.fas {
    font-size: 14px;
}

.fa-user-circle {
    font-size: 24px;
}
.fa-chevron-left,
.fa-chevron-right {
    font-size: 10px;
}

/* Espaciado Consistente */
.space-y-4 > * + * {
    margin-top: 16px;
}

.space-y-8 > * + * {
    margin-top: 32px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 16px;
}

/* ========================================
   RESPONSIVE DESIGN MINIMALISTA
   ======================================== */

@media (max-width: 768px) {
    .agenda-tab {
        min-width: 0;
        flex: 1;
        padding: 6px 8px;
        font-size: 0.875rem;
    }
    
    .agenda-tab-name {
        font-size: 12px;
    }
    
    .agenda-tab-stats {
        font-size: 10px;
    }
    
    .quick-filters {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        padding: 3px 6px;
        font-size: 10px;
    }
    
    .metric-card {
        padding: 10px;
    }
    
    .metric-value {
        font-size: 18px;
    }
    
    .metric-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .quick-action-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .agenda-selector-container,
    .appointments-panel,
    .metrics-section {
        padding: 20px 10px;
        margin-bottom: 16px;
    }
    
    .agenda-tab {
        min-width: 180px;
        max-width: 250px;
        padding: 10px 14px;
    }
    
    .agenda-tab-name {
        font-size: 13px;
    }
    
    .agenda-tabs-wrapper {
        gap: 6px;
        padding: 6px 0;
    }
    
    .panel-content {
        padding: 12px;
    }
    
    .grid.grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .title-primary {
        font-size: 20px;
    }
    
    .title-subsection {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tooltips */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-800);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

/* Estados de carga */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Notificaciones mejoradas */
#notification {
    top: 5rem !important;
    z-index: 10000 !important;
}

.notification {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.notification.success {
    border-left-color: var(--success-color);
}

.notification.warning {
    border-left-color: var(--warning-color);
}

.notification.error {
    border-left-color: var(--danger-color);
}

/* Estilos para tarjetas de fecha (compatibilidad) */
.date-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 6rem;
    text-align: center;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
}

.date-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.date-card-selected {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.date-card-free { 
    background-color: #f0fdf4; 
    color: #15803d; 
    border-color: #bbf7d0;
}

.date-card-occupied { 
    background-color: #fef2f2; 
    color: #dc2626; 
    border-color: #fecaca;
}

.date-card-blocked { 
    background-color: #f3f4f6; 
    color: #6b7280; 
    border-color: #d1d5db;
}

/* Estilos para encabezados de grid (compatibilidad) */
.grid-header {
    font-weight: 600;
    text-align: center;
    color: #6b7280;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

/* Responsive para móviles (compatibilidad) */
@media (max-width: 768px) {
    .date-card {
        width: 3rem;
        height: 4.5rem;
        font-size: 0.875rem;
    }
    
    .grid-header {
        font-size: 0.75rem;
    }
    
    .agenda-button {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    #notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* Clases de colores de fondo */
.bg-red-600 {
    background-color: #dc2626;
}

.bg-red-700 {
    background-color: #b91c1c;
}

.bg-gray-300 {
    background-color: #d1d5db;
}

.bg-gray-400 {
    background-color: #9ca3af;
}

.bg-green-100 {
    background-color: #dcfce7;
}

/* Clases de colores de texto */
.text-red-600 {
    color: #dc2626;
}

.text-red-800 {
    color: #991b1b;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-700 {
    color: #374151;
}

.text-green-800 {
    color: #166534;
}

.text-white {
    color: white;
}

/* Clases de padding */
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Clases de border radius */
.rounded-lg {
    border-radius: 0.5rem;
}

/* Clases de font weight */
.font-medium {
    font-weight: 500;
}

/* Clases de transición */
.transition-colors {
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Animaciones para el calendario */
.calendar-grid.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.calendar-grid.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.calendar-container.loading {
    opacity: 0.7;
    pointer-events: none;
}

.calendar-day {
    transition: all 0.2s ease;
}

.calendar-day.loading {
    opacity: 0.5;
    transform: scale(0.95);
}

/* Clases de hover */
.hover\:bg-red-700:hover {
    background-color: #b91c1c;
}

.hover\:bg-gray-400:hover {
    background-color: #9ca3af;
}

.hover\:text-red-800:hover {
    color: #991b1b;
}

.hover\:underline:hover {
    text-decoration: underline;
}

/* ===== ESTILOS ESPECÍFICOS PARA SELECTOR DE AGENDAS - MINIMALISTAS ===== */
#agenda-tabs .agenda-tab {
    /* Forzar estilos base minimalistas */
    min-width: 140px !important;
    max-width: 180px !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    flex-shrink: 0 !important;
    position: relative !important;
    white-space: nowrap !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #4b5563 !important;
    text-align: left !important;
    display: block !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    outline: none !important;
    text-decoration: none !important;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

/* Estados específicos - Minimalistas */
#agenda-tabs .agenda-tab.configured {
    background: #f0fdf4 !important;
    border-color: #22c55e !important;
    color: #166534 !important;
}

#agenda-tabs .agenda-tab.configured.active {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: white !important;
}

#agenda-tabs .agenda-tab.needs-config {
    background: #fffbeb !important;
    border-color: #fbbf24 !important;
    color: #92400e !important;
}

#agenda-tabs .agenda-tab.needs-config:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* Contenido interno específico - Minimalista */
#agenda-tabs .agenda-tab .agenda-tab-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    width: 100% !important;
}

#agenda-tabs .agenda-tab .agenda-tab-name {
    font-size: 13px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 1px !important;
    width: 100% !important;
    line-height: 1.2 !important;
}

#agenda-tabs .agenda-tab .agenda-tab-stats {
    font-size: 10px !important;
    opacity: 0.7 !important;
    width: 100% !important;
}

/* Clases adicionales necesarias */
.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.rounded-full {
    border-radius: 9999px;
}

.mr-1 {
    margin-right: 0.25rem;
}