html,
body {
    height: 100%;
}
/* Minimum height for cards */
.card-min-height {
    min-height: 120px; /* Adjust the value as necessary */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Change background on hover */
.card-min-height:hover {
    background-color: #f8f9fa; /* Light gray background */
    cursor: pointer;
}