/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.card {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.navbar-brand {
    font-weight: bold;
}

/* Botones */
.btn {
    border-radius: 5px;
}

.btn-primary {
    background-color: #4361ee;
    border-color: #4361ee;
}

.btn-primary:hover {
    background-color: #3a56d4;
    border-color: #3a56d4;
}

/* Tablas */
.table {
    border-radius: 10px;
    overflow: hidden;
}

.table th {
    background-color: #4361ee;
    color: white;
    border: none;
}

/* Badges */
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* Dashboard cards */
.card-stats {
    border-left: 4px solid;
}

.card-stats.bg-primary {
    border-left-color: #2845b8;
}

.card-stats.bg-success {
    border-left-color: #1e7e34;
}

.card-stats.bg-warning {
    border-left-color: #d39e00;
}

.card-stats.bg-info {
    border-left-color: #117a8b;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Alertas */
.alert {
    border-radius: 10px;
    border: none;
}

/* Sidebar */
.sidebar {
    min-height: calc(100vh - 56px);
    background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
}

.sidebar .nav-link {
    color: #ecf0f1;
    padding: 15px 20px;
    border-left: 4px solid transparent;
    transition: all 0.3s;
}

.sidebar .nav-link:hover {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
    border-left-color: #4361ee;
}

.sidebar .nav-link.active {
    background-color: rgba(255,255,255,0.1);
    border-left-color: #4361ee;
    color: #fff;
}

.badge-para-llevar {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
}
.info-para-llevar {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: white;
    border-radius: 8px;
}