/* Estilos personalizados */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.estado-badge {
    font-size: 0.85rem;
    padding: 0.35em 0.65em;
}

.foto-thumbnail {
    width: 150px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
}

.foto-thumbnail:hover {
    opacity: 0.8;
}

.login-container {
    max-width: 450px;
    margin: 100px auto;
}

.stats-card {
    border-left: 4px solid;
}

.stats-card.primary {
    border-color: #0d6efd;
}

.stats-card.success {
    border-color: #198754;
}

.stats-card.warning {
    border-color: #ffc107;
}

.stats-card.danger {
    border-color: #dc3545;
}

.table-actions {
    white-space: nowrap;
}

.filtros-card {
    background-color: #f8f9fa;
}
