body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100%;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 0rem;
    --bs-gutter-y: 0;
    width: 90%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}
.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 220px;
  background: #750f33;
  color: white;
  padding: 20px;
}

.sidebar h2 {
  margin-top: 0;
}

.sidebar a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 15px 0;
}

.sidebar a:hover {
  text-decoration: underline;
}

.content {
  flex: 1;
  padding: 30px;
}

/* Make all tables same width */
.content table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 20px;
}

/* Control column widths */
.content table td:first-child {
  width: 170px; /* image column */
}

.content table td:nth-child(2) {
  width: 220px; /* label column */
}

/* Allow long text to wrap instead of resizing table */
.content table td {
  word-wrap: break-word;
  vertical-align: center;
}
.content table,
.content table td {
  border: 1px solid #999;
}
table td img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills cell, crops excess */
}
