body {
  background-color: beige;
  color: black;
  font-family: 'Times New Roman', Times, serif;
}

header {
  background-color: turquoise;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 24px;
  letter-spacing: 1px;
}

.section1 {
  border: 2px solid turquoise;
  padding: 10px;
  margin: 10px;
}

.section2 {
  border: 2px solid #e6be8a;
  padding: 10px;
  margin: 10px;
}

.contact-form {
  background-color: white;
  border: 2px solid turquoise;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  width: 400px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
  text-align: center;
  color: turquoise;
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin-top: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Times New Roman', Times, serif;
  background-color: #fdfaf3;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: turquoise;
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: turquoise;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  font-family: 'Times New Roman', Times, serif;
}

.contact-form button:hover {
  background-color: #009999;
}

.inline-options {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

#resultContainer {
    margin-top: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px burlywood;
    width: 80%;
    max-width: 700px;
}

#resultTable {
    width:100%;
    border-collapse: collapse;
}

#resultTable th, #resultTable td {
    border: 1px solid gold;
    padding: 10px;
    text-align: left;
}

#resultTable th {
    background-color: turquoise;
    color: white;
}
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.popup-content {
  padding: 20px;
  color: white;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}