
font-face {
  font-family: "Roboto";
  src: url("\public\Roboto-Medium.woff2") format("woff2");
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  color: #2c3142;
  font-family: "Roboto";
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
  color: #131a2c;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

p {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.46;
  letter-spacing: 0.5px;
  color: #1c1c1e;
  letter-spacing: 0.5px;
}
hr {
  border: solid 0.5px #e6e6e6;
}
ul {
  list-style: none;
}
label {
  font-size: 16px;
  font-weight: 300;
}

.tooltip {
  position: absolute;
  top: 60px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: none;
}

.tooltip a {
  display: block;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: 300;
}

.tooltip a:hover {
  background-color: #f3f3f6;
}

.tooltip.active {
  display: block;
}




table {
  background-color: #f7f7ff;
  border-collapse: separate;
  border-spacing: 0; 
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  border: solid 0.5px #e6e6e6;
  overflow: hidden; 
}

table tr th,
table tr td {
  padding: 0.625rem;
  border: none;
}

table tr th {
  text-align: left;
  background-color: #e9e9f6;
}

table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

table tr:nth-child(odd) {
  background-color: #ffffff;
}

table tr:nth-child(even) {
  background-color: #f7f7ff;
}


table .example__original {
    font-weight: 300;
}
table .example__translation {
    font-weight: 300;
}