.underlag table, .underlag th, .underlag td {
    border: 1px solid black;
    border-collapse: collapse;
}

.underlag th, .underlag td {
    padding-left: 10px;
    padding-right: 10px;
}


/* Custom object-fit cover utility for Bootstrap 4 */
.object-fit-cover {
    object-fit: cover;
    width: 100vw;   /* Ensures it fills the container's width */
    height: 100vh;  /* Ensures it fills the container's height */
}

.image-container {
    min-width: 100%;          /* Full width of parent */
    width: 100%;          /* Full width of parent */
    height: 247px;        /* Fixed height */
    overflow: hidden;     /* Hide overflow */
}

.image-container img {
    width: 100%;          /* Stretch to full width */
    height: 100%;         /* Fill container height */
    object-fit: cover;    /* Crop to fill without distortion */
}