html {
  box-sizing: border-box;
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-size: 16px;
  line-height: 2;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  direction: rtl;
}

.results {
  margin-top: 20px;
  background-color: #f0f0f0;
  padding: 15px;
  border-radius: 8px;
  text-align: right;
}

.error {
  color: red;
  font-weight: bold;
  margin-top: 20px;
}

a{
  text-decoration: none;
  color: #000;
}

.highlight {
  background-color: yellow;
  font-weight: bold;
}

.see-more {
  background-color: #4CAF50;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.see-more:hover {
  background-color: #45a049;
}