.card {
    border: none;
    margin-bottom: 0.25rem; /* Correct way to set margin-bottom to match Bootstrap's mb-1 */

}

.card-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.card-header span {
    flex: 1 1 45%;
    margin: 4px 4px 4px 4px;
}
.card-header strong {
    white-space: nowrap;
}
.card-body  {
    margin: 0;
    padding: 0;
}

.card-body ul {
    margin: 0;
    padding: 0;
}


.card-body ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 33px;
    /* Optional: Include any other styles from Bootstrap classes */
    padding: 0.75rem 1.25rem; /* padding from .list-group-item */
    background-color: #fff; /* background color from .list-group-item */
    border: 1px solid rgba(0, 0, 0, 0.125); /* border from .list-group-item */
    border-radius: 0rem; /* border radius from .list-group-item */
}

.card-body .table-responsive {
    margin: 0; /* Remove any margin on the table-responsive div */
}

.card-body th, .card-body td {
    word-wrap: break-word; /* Ensure long words break and don't overflow */
    white-space: nowrap; /* Optional: Prevent text from wrapping */
}
.card-body table {
    width: 100%; /* Make the table width 100% of the card body */
    table-layout: fixed; /* Optional: Ensures cells take up equal width */
    margin: 0;
}

@media (min-width: 576px) {
    .card-header {
        flex-wrap: nowrap;
    }
    .card-header span {
        flex: 0 1 auto;
    }
}