body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f8f4f1;
}

h1 {
  text-align: center;
}
form {
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  min-width: 450px !important;
}

button {
  padding: 10px;
  width: 100%;

  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #8b2c2c, #3f1d1d);
  border: none;
  color: white;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #a53a3a, #512121);
}

.btn-outline-primary {
  border: 2px solid #8b2c2c;
  color: #8b2c2c;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #8b2c2c, #3f1d1d);
  border-color: #3f1d1d;
}

button:disabled {
  cursor: not-allowed;
}
.spinner {
  text-align: center;
  margin-top: 20px;
  display: none;
}
.results {
  /* margin-top: 20px; */
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  vertical-align: top;
}
th {
  background: #f0f0f0;
}

.sec-text-color {
  color: #938686;
}

header {
  background-color: #fdfafa;
}

.hero {
  /* background: linear-gradient(135deg, #8b2c2c, #3f1d1d); */
  /* background: linear-gradient(135deg, #9333ea, #d97706); */
  /* color: white; */
  background-color: #f0eae7;
  padding: 40px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.25rem;
  margin-top: 20px;
}

.section-padding {
  padding: 60px 0;
}

#main-app {
  background-color: #f0eae7;
}

#contact {
  background-color: #f0eae7;
}

.footer {
  background-color: #3f1d1d;
  color: #f5f5f5;
  padding: 40px 0;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
}

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

@media (max-width: 600px) {
  th,
  td {
    font-size: 14px;
  }
  form {
    min-width: 360px !important;
  }
  #app-content{
    flex-wrap:wrap
  }
}
