.content-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 10px;
background-color: #f9f9f9;
}
.content-box {
flex: 1 1 22%;
min-width: 200px;
padding: 5px;
border: 1px solid #ccc;
border-radius: 10px;
background-color: #f9f9f9;
box-sizing: border-box;
}
/* Make tables responsive inside boxes */
.table-wrapper {
overflow-x: auto;
}
.table {
width: 100%;
border-spacing: 0;
}
.table th,
.table td {
padding: 5px;
border-bottom: 1px solid #ccc;
text-align: left;
}
.table th img,
.table td img {
width: 25px;
}
/* Mobile: stack boxes vertically */
@media screen and (max-width: 768px) {
.content-container {
flex-direction: column;
}
.content-box {
flex: 1 1 100%;
width: 100%;
}
}