/* Make sure the body fills the entire viewport */
html, body {
  height: 100%;
  margin: 0;
}

/* Flexbox layout to push footer down */
.app-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Make root grow to take available space */
#root {
  flex: 1;
}

/* Footer styling (already present, but you can tweak if needed) */
.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

h1, h2 {
  color: #333;
}

ul {
  padding-left: 20px;
}

input[type="text"] {
  box-sizing: border-box;
}

.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
