/* Optional: Sticky footer support */

html, body {
  height: 100%;
}

body {
    font-family: 'Verdana', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
  width: 100%;
  max-width: 36rem;
  text-align: center;
  padding: 0 1rem;
}

.title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #1f2937;
}

.form {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
}

.input {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  color: #374151;
  border: none;
  outline: none;
  border-radius: 9999px;
  min-width: 0; /* Prevent overflow */
}

.button {
  background-color: #3b82f6;
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}

.button:hover {
  background: #035c46;
  transform: scale(1.02);
}

.result {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: #374151;
}

.hidden {
  display: none;
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 250px;
}

.footer-links a {
  font-size: 14px;
  color: #020303;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #0e8464;
}

/* Header */
.header {
  position: absolute;
  top: 0px;
  left: 15px;
}

/* Logo */
.logo {
  width: 250px;
  height: auto;
}


/* Responsive tweaks */
@media (min-width: 640px) {
  .form {
    flex-wrap: nowrap;
  }

  .input {
    flex: 1;
    margin-bottom: 0;
  }

  .button {
    width: auto;
    margin-left: 0.5rem;
  }
}

