/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  background: #f2f2f2;
}

#main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#searchResults {
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
}
.search-header {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 15px;
  margin: 20px 0;
}

#searchInput {
  padding: 15px 20px;
  font-size: 18px;
  border: 2px solid #ddd;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#searchInput:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
  outline: none;
}

#mainTitle {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 2px;
}

/* Results table styling */
.results-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.results-table th,
.results-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.results-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}
#mainTitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0px; /* Reduce space below text */
    padding-bottom: 0px;
}

.phone-animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: -20px; /* Move animation closer */
}
