card-text {
    max-height: 10px; /* Prilagodite visinu prema potrebi */
    overflow: hidden;    transition: max-height 0.3s ease;
}

card-text.expanded {
    max-height: none; /* Uklonite ograničenje visine */
}

show-more-btn {
    cursor: pointer;
    color: blue;
    text-decoration: underline;
}