/* Wrapper */
.mk-table-wrap { overflow-x: auto; }

/* Table base */
.mk-anim-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #0a1633;
  font-family: inherit;
}

/* Head */
.mk-anim-table thead th {
  background: #fff;
  color: #0a1633;
  font-weight: 800;
  font-size: 18px;
  padding: 14px;
  border: 2px solid #0a1633;
}

/* Body cells */
.mk-anim-table td {
  padding: 16px;
  border: 2px solid #0a1633;
  font-size: 16px;
}

/* Row animation */
.mk-anim-table tbody tr {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.mk-anim-table tbody tr:hover {
  transform: translateX(6px);
  background-color: rgba(10,22,51,0.04);
  box-shadow: -6px 0 0 #0a1633;
}

/* Link style */
.mk-anim-table a {
  color: #c0395a;
  font-weight: 600;
  text-decoration: underline;
}
.mk-anim-table a:hover { text-decoration: none; }
