body {
    font-family: "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    font-style: normal;
    color: #000000;
    font-size: 1rem;
    padding-top: 100px;
}
a {
  outline: none;
  text-decoration: none;
}
a:link { color: #369; }
a:visited { color:purple; }
a.line:hover {
  border-bottom: 2px solid #1679C6;
}

  .fixed-top-bar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 10px;
    margin: 0 auto;
    background-image: linear-gradient(#1679C6, #409BDF);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    gap: 10px;
  }

 .logo-link {
   display: flex;
   align-items: center;
   gap: 8px;
   text-decoration: none;
  }

 .logo-img {
    height: 66px;
    display: block;
    margin-bottom: 0;
  }

.logo-text {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

  .logo-container form {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
  }

  .logo-container input[type="text"] {
    height: 32px;
    font-size: 16px;
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    min-width: 280px;
  }

  .logo-container input[type="submit"] {
    height: 32px;
    font-size: 18px;
    border: none;
    background: #fff;
    color: #1679C6;
    border-radius: 4px;
    cursor: pointer;
    padding: 0 12px;
  margin-right: 18px;

  }

  .logo-container input[type="text"],
  .logo-container input[type="submit"] {
  height: 36px;
  font-size: 16px;
  line-height: 1;
  padding: 4px 10px;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
}


  @media (max-width: 600px) {
    .logo-container {
      flex-direction: column;
      align-items: center;
    }

	.logo-container img {
	  height: 40px;
	  display: block;
	  margin-bottom: 0;
	}

	.logo-container form {
      width: 100%;
      justify-content: center;
    }

    .logo-container input[type="text"] {
      width: 80%;
      font-size: 18px;
    }

    .logo-container input[type="submit"] {
      font-size: 18px;
      padding: 0 16px;
    }
  }

  .parentend {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 24px;
    background-color: #333;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    font-size: 14px;
  }

  .childend.logo {
    flex-shrink: 0;
  }

  .childend.logo img {
    max-height: 40px;
    height: auto;
    width: auto;
  }

  .childend.text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .childend.text span {
    margin-right: 10px;
    white-space: nowrap;
  }

  .childend.text a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 6px;
    white-space: nowrap;
  }

  .childend.text a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .parentend {
      flex-direction: column;
      align-items: flex-start;
    }

    .childend.text {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }

    .childend.text span {
      margin: 0 0 6px 0;
    }

    .childend.text a {
      margin: 0;
    }
  }

.cookies-eu-banner {
  background: #444;
  color: #fff;
  padding: 3px;
  font-size: 18px;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
}

.cookies-eu-banner button {
  text-decoration: none;
  background: #222;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  padding: 4px 7px;
  margin: 2px 0;
  font-size: 18px;
  font-weight: 10;
  transition: background 0.07s, color 0.07s, border-color 0.07s;
}

.cookies-eu-banner button:hover {
  background: #FFF;
  color: #222;
}

.hidden {
  display: none;
}



.top-hits-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.top-hits-section h2 {
  font-weight: bolder;
  line-height: 1.5;
  margin-top: 40px;
  text-align: center;
}

.top-hits-section p {
  text-align: center;
  font-size: 16px;
  color: #555;
}

.top-hits-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.top-hits-buttons a {
  display: inline-block;
  padding: 10px 16px;
  background-color: #f1f1f1;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.top-hits-buttons a:hover {
  background-color: #e0e0e0;
  color: #000;
}

.top-hits-section table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 6px;
  font-size: 15px;
}

.top-hits-section th {
  text-align: left;
  padding: 8px 10px;
  color: #444;
  border-bottom: 2px solid #ddd;
  font-weight: 600;
}

.top-hits-section td {
  padding: 6px 10px;
  border-bottom: 1px solid #eee;
}

.top-hits-section tr:hover td {
  background-color: #f9fafb;
}
