﻿/* Mantén tu CSS actual y agrega estos estilos */

.icon-turquesa {
    color: #20c997 !important;
}

.icon-gris {
    color: #6c757d !important;
}

/* Estilos para las tarjetas del dashboard */
.metric-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    border: 1px solid #dee2e6;
}

    .metric-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-dark);
}

/* Estilos para badges de estado */
.status-badge {
    padding: 0.35rem 0.65rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-issued {
    background-color: #d4edda;
    color: #155724;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

/* Animaciones */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.offcanvas {
    width: 60% !important;
}
