/* assets/css/styles.css */
body {
    background-color: #f4f6f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
}

/* Footer pegado al fondo */
footer {
    margin-top: auto;
    background-color: #343a40;
    color: white;
    padding: 20px 0;
}

/* Hero Section (Buscador principal) */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
    text-align: center;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Tarjetas de Deudores */
.card-deudor {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card-deudor:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.img-deudor-container {
    height: 250px;
    overflow: hidden;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-deudor {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.badge-estado {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8rem;
}