/* Estilos para administración y reportes internos (visit_stats, badges de reservas, etc.) */

.admin-content {
    min-height: 60vh;
    padding: 2rem 0;
}

.stats-dashboard {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}
.stats-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}
.stats-card:hover {
    transform: translateY(-5px);
}
.stats-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.stats-label {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}
.stats-icon {
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
}

/* Badges y estados de reservas (admin y usuario) */
.reservation-status {
    color: #000 !important;
    font-weight: 600;
}
.badge {
    font-weight: 600 !important;
}
.badge.bg-success {
    background-color: #28a745 !important;
    color: #fff !important;
}
.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
}
.badge.bg-danger {
    background-color: #dc3545 !important;
    color: #fff !important;
}
.badge.bg-secondary {
    background-color: #6c757d !important;
    color: #fff !important;
}
.badge.bg-info {
    background-color: #17a2b8 !important;
    color: #fff !important;
}
