/* your styles go here */
/* Example site test */

.box-image-text .image {
    min-height: 190px;
    max-height: 190px;
}

.box-image-text .image img {
    max-height: 190px;
    margin: auto;
}

.box-simple {
    min-height: 230px;
}

/* Basic table styling for borders */
table {
    border-collapse: collapse; /* Collapses adjacent borders into a single border */
    width: 100%; /* Optional: Makes the table span the full width */
}

th, td {
    border: 1px solid #ccc; /* Sets a 1px solid border with a light gray color */
    padding: 8px; /* Adds padding inside the cells for readability */
    text-align: left; /* Optional: Aligns text to the left */
}

/* Optional: Add a bottom border to table headers */
thead th {
    border-bottom: 2px solid #ccc;
}
