/* Estilo base del fondo */
body {
    background: linear-gradient(to bottom, #cccccc, #eeeeee);
    min-height: 100vh;
    padding-bottom: 2rem;
}

/* Mejora para las tarjetas (Cards) */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card-title {
    font-weight: bold;
    color: #055160; /* Un tono oscuro que combina con el borde info */
}