body {
  margin: 0;
  background-color: #0f0f0f;
  font-family: 'Syne', sans-serif;
}

/* Fullscreen center */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Syne', sans-serif;
}

/* Bigger container */
.search-box {
  display: flex;
  align-items: center;
  width: 600px;          /* ⬅ increased size */
  max-width: 90vw;       /* responsive */
  padding: 18px 20px;
  border-radius: 16px;
  background: #1a1a1a;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  font-family: 'Syne', sans-serif;
}

/* Input grows to fill */
.search-input {
  flex: 1;
  font-size: 20px;       /* ⬅ larger text */
  border: none;
  outline: none;
  background: transparent;
  color: #f5f5f5;
  font-family: 'Syne', sans-serif;
}

/* Button styling */
.search-btn {
  font-size: 20px;
  border: none;
  background: #2a2a2a;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease;
}

.search-btn:hover {
  background: #3a3a3a;
}

.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #dedede5f;   
  border-top: 4px solid #dedede; 
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Footer stays fixed at bottom */
.footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.search-icon {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}
