@font-face {
  font-family: 'Cyberpunk';
  src: url('/static/fonts/Cyberpunk.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html, body {
  height: 100%;
  background-color: #f8f9fa;
}

body {
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.logo {
  font-family: "Cyberpunk";
  font-weight: 700;
  font-size: 4rem;
  color: #212529;
}

.tagline {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 24px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}

.search-box {
  width: clamp(300px, 80vw, 500px);
  margin-bottom: 30px;
}

.search-box .form-control {
  border-radius: 50px 0 0 50px;
  padding: 12px 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #ced4da;
  border-right: none !important;
  outline: none;
}

.search-box .form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.search-box .btn,
.search-box .btn:hover,
.search-box .btn:focus,
.search-box .btn:active,
.search-box .btn:visited {
  border-radius: 0 50px 50px 0;
  padding: 8px 20px;
  background-color: #fff !important;
  color: #0d6efd;
  border: 1px solid #ced4da !important;
  border-left: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.search-box .btn i {
  font-size: 1.2rem;
}

.info-section {
  width: 100%;
  padding: 10px 0 5px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.info-card {
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  width: 220px;
  background-color: #fff;
}

.info-card .card-header {
  background-color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 10px 12px;
}

.info-card .card-body {
  padding: 0;
}

.info-card table {
  width: 100%;
  margin: 0;
}

.info-card td {
  padding: 8px 12px;
}

.info-card tr {
  border-bottom: 1px solid #f0f0f0;
}

.info-card tr:last-child {
  border-bottom: none;
}

.info-card td:first-child {
  text-align: left;
}

.info-card td:last-child {
  text-align: right;
}

.last-updated {
  font-size: 0.75rem;
  color: #6c757d;
  text-align: center;
  margin-top: 8px;
}

footer {
  flex-shrink: 0;
  background-color: #f1f3f5;
}

.footer-links a {
  text-decoration: none;
  color: #6c757d;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .logo {
    font-size: 2.2rem;
  }
}
