/* index.css */

/* Apply some basic styling to the entire page */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(102, 211, 250);
}

.parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.main {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 80%;
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
}

h1 {
  margin-bottom: 10px;
  color: #007bff;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  padding: 8px;
  text-align: center;
  border: 1px solid rgb(102, 211, 250);
}

/* Style input fields */
input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid rgb(102, 211, 250);
  border-radius: 5px;
  transition: border-color 0.3s;
}

input[type="text"]:focus {
  border-color: #007bff;
}

/* Style select dropdowns */
select {
  width: 100%;
  padding: 8px;
  border: 1px solid rgb(102, 211, 250);
  border-radius: 5px;
}

/* Style the button */
.btn {
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Style the footer */
.footer {
  margin-top: 30px;
  padding: 10px;
  text-align: center;
  background-color: #ffffff;
  border-top: 1px solid rgb(102, 211, 250);
}

/* Responsive styles */
@media (max-width: 480px) {
  .main {
    padding: 15px;
  }

  h1 {
    font-size: 24px;
  }

  th, td {
    padding: 6px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .main {
    padding: 20px;
  }

  h1 {
    font-size: 28px;
  }
}
