body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f2f2f2;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  width: 70%;
}

button[type="submit"] {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

#statusContainer {
  text-align: center;
  margin-bottom: 20px;
}

.status {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.reason {
  font-size: 16px;
}

/* Background colors for different status */
.status-trusted {
  background-color: #9ACD32;
}

.status-scam {
  background-color: #FF4500;
}

.status-unknown {
  background-color: #808080;
  color: #fff;
}

/* Responsive styles */
@media screen and (max-width: 480px) {
  input[type="text"] {
    width: 60%;
  }
}

.bg-trusted {
  background-color: #9ACD32;
}

.bg-scam {
  background-color: #FF4500;
}

.bg-unknown {
  background-color: #FFFF00;
}

.badge {
  width: 20px; /* Adjust the size as needed */
  height: 20px;
  margin-left: 10px; /* Adjust the spacing as needed */
}

.bg-certified {
  background-color: goldenrod;
  background-image: none;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bg-certified {
  background-color: goldenrod;
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1) 10%, rgba(255, 255, 255, 0.4) 50%);
}


@keyframes shine {
  0% {
    background-position: -200px;
  }
  100% {
    background-position: calc(200px + 100%) ;
  }
}