body {
    background-color: #f8f9fa;
    padding-bottom: 60px;
}

.card {
    border-radius: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.badge-estado {
    padding: 0.5em 0.75em;
    border-radius: 20px;
    font-weight: 500;
}

.badge-pendiente { background-color: #ffc107; color: black; }
.badge-en_proceso { background-color: #0d6efd; color: white; }
.badge-completado { background-color: #198754; color: white; }

#estadosChart, #tendenciaChart, #dispositivosChart, #clientesChart {
    max-height: 300px;
}

.list-group-item-action:hover {
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.container-fluid {
    padding-bottom: 60px;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.card-header {
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    
    .row > div {
        margin-bottom: 1rem;
    }
}