

/* Add more styles as needed */
.hide{
    visibility: hidden;
}

.ratio{
    max-height: 300px;
}

.dark-mode {
    background-color: #2b2b2b;
    color: #ffffff;
}


.card-body-small {
    max-height: 55px;
    overflow: hidden;
    transition: max-height 0.5s; /* Set the transition duration */
    padding-top:0;
    padding-left:16px;
}

.card:hover .card-body-small  {
    max-height: 100%; /* Reset to normal size on hover */
}

.card-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px; /* Adjust as needed */
    padding-left : 16px;
}

.card-body-small2 {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.5s; /* Set the transition duration */
    padding-top:0;
    padding-left:16px;
}

.card:hover .card-body-small2 {
    max-height: 100%; /* Reset to normal size on hover */
}

