body {
  font-family: 'Carlito', sans-serif;
  font-size: 90%;
}

table {
  border: 1px solid lightgray; /* thin outer frame */
  border-collapse: collapse;   /* clean cell borders */
  width: 100%; /* optional: makes table span full width */
}
th, td {
  border: 1px solid lightgray; /* cell borders match the frame */
  padding: 8px;
  text-align: left;
}

a {
  text-decoration: none;
  color: #777;
  transition: color 0.3s ease;
}
a:hover {
  color: #999;
  text-decoration: none;
}

.head-table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}
.head-table td {
  border: none;
  padding: 4px 0; /* optional: for spacing */
}

.left-align {
  text-align: left;
}
.right-align {
  text-align: right;
}
