/* Card Grundlayout */

.jbcard {
    display: flex;
    flex-direction: column; /* Flex-Ausrichtung vertikal */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: unset;
    width: 300px;
    height: 400px; /* Feste Höhe für die Card */
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    background-color: #ffffff;
}