.header_link,
nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header,
.hero {
  background: #6e46cb;
}
.footer_links a,
.header_link,
.logo {
  text-decoration: none;
}
.info h2,
footer {
  margin-top: 1em;
}
* {
  padding: 0;
  margin: 0;
}
body {
  color: #4a4a4a;
  font-size: 1em;
  font-weight: 400;
  background: #f5f5ff;
  font-family: system-ui;
}
.header {
  padding: 1em;
}
.header_link {
  color: #fff;
  font-size: 1.2em;
}
.list,
.nofav {
  font-size: 20px;
}
.logo img {
  width: 200px;
}
nav {
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero,
.nofav {
  display: flex;
  align-items: center;
  text-align: center;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.nofav {
  justify-content: center;
  height: 300px;
  width: 100%;
  color: red;
}
.hero {
  padding: 2em 1px;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
#codehap_form {
  background: #fff;
  padding: 1px 15px;
  border-radius: 20px;
  margin-block: 5px;
}
.codehap_input {
  height: 50px;
  outline: 0;
  border: 0;
  overflow: hidden;
  border-radius: 20px;
  display: block;
  width: 100%;
}
.btn-copy {
  cursor: pointer;
  border: none;
  outline: 0;
  background: #f3f4f7;
  padding: 5px;
  width: 90px;
  border-radius: 5px;
}
.btn-fav,
.codehap_btn {
  border: none;
  outline: 0;
}
.btn-fav {
  cursor: pointer;
  background: 0 0;
  padding: 0;
  margin: 0;
  width: 50px;
  color: #6a737b;
}
#goToTopBtn,
.codehap_btn {
  width: 50px;
  background: #fc5185;
  cursor: pointer;
}
.buttons {
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.codehap_buttons {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-block: 5px;
}
.codehap_btn {
  color: #fff;
  padding: 5px;
  border-radius: 5px;
}
.row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
#goToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  height: 50px;
  border: none;
  color: #fff;
  border-radius: 50%;
}
#goToTopBtn:hover {
  background-color: #555;
}
.codehap_Showresult,
.is_center {
  text-align: center;
}
.list {
  font-weight: 700;
  background: #fff;
  box-shadow: 0 4px 8px rgba(71, 75, 255, 0.075);
  padding: 8px 5px;
  border-radius: 10px;
  margin: 10px 5px;
  border: 1px solid #d7d7d8;
}
.load-more-box {
  max-width: 400px;
  margin: auto;
}
.load-more,
.sendemail {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 1em 5px;
  width: 100%;
  background: #fc5185;
  color: #fff;
  font-weight: bolder;
}
.codehap_btn:hover,
.footer_links a:hover,
.load-more:hover,
.sendemail:hover {
  filter: brightness(130%);
}
.form-control {
  width: 100%;
  min-height: 40px;
  outline: 0;
  border: 1px solid #caccd1;
  border-radius: 10px;
  margin-bottom: 10px;
}
.btn-copy:hover {
  filter: contrast(90%);
}
.who {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: #424242;
}
footer {
  padding: 1em 10px;
  display: block;
  background: #000;
  color: #fff;
}
.footer_links a {
  color: #fff;
  background: grey;
  padding: 5px;
  border-radius: 5px;
  width: 150px;
  text-align: center;
}
.footer_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 1em;
}
.info {
  padding: 1em;
  line-height: 1.6em;
}
ol,
ul {
  list-style-position: inside;
}
@media only screen and (max-width: 600px) {
  .footer_links a {
    width: 110px;
  }
  .logo img {
    width: 100px;
  }
  .header_link,
  .tagline {
    font-size: 0.8em;
  }
  .header {
    padding: 0.8em 1em;
  }
  .hero {
    padding: 1.2em 10px;
  }
  .is_h1 {
    font-size: 1.4em;
  }
  .row {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
/* Table Styles */
.table-container {
    width: 90%;
    overflow-x: auto;
    margin: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
}

th {
    background-color: #6e46cb;
    color: white;
    font-weight: bold;
}

.link-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: white;
    color: black;
    text-decoration: none;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.link-button:hover {
    background-color: black;
    color: white;
}

@media (max-width: 600px) {
    .link-button {
        font-size: 12px;
        padding: 8px 12px;
    }
    table {
        font-size: 14px;
    }
}

