body {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background-color: #c1cad6;
  font-family: Arial, sans-serif;
}

.neumorphic {
  background: #c1cad6;
  border-radius: 20px;
  box-shadow: 10px 10px 20px #78889f, -10px -10px 20px #ffffff;
}

.neumorphic-inset {
  background: #c1cad6;
  border-radius: 20px;
  box-shadow: inset 10px 10px 20px #78889f, -10px -10px 20px #ffffff;
}

.neumorphic-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 40px;
  width: 600px;
  height: auto;
  text-align: left;
  margin-bottom: 30px;
}

h2 {
  color: #4d5461;
  margin-bottom: 20px;
  align-self: center;
}

label {
  color: #4d5461;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 15px;
  margin-left: 100px;
  display: block;
  font-weight: 600;
}

.neumorphic-input {
  padding: 15px;
  width: 400px;
  font-size: 16px;
  color: #5e6878;
  border: none;
  outline: none;
  margin-bottom: 20px;
  margin-left: 90px;
}

.neumorphic-input::placeholder {
  color: #78889f;
}

.neumorphic-button {
  padding: 12px 24px;
  font-size: 16px;
  color: #5e6878;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  align-self: center;
  transition: all 0.3s ease;
  margin-left: 250px;
  font-weight: 600;
}

.neumorphic-button:active {
  box-shadow: inset 5px 5px 10px #78889f, 5px -5px 10px #ffffff;
}

/* Styling for submitted data section */
#h3 {
  color: #4d5461;
  margin-bottom: 10px;
}

#dataTable {
  width: 680px;
  border-collapse: collapse;
  background-color: #c1cad6;
  border-radius: 15px;
  border-color: #c1cad6;
  box-shadow: 10px 10px 20px #a3b1c6, -10px -10px 20px #ffffff;
}

#dataTable th{
background-color: #d4dbe5;
  padding: 15px;
  text-align: center;
  color: #2c3e50;
  font-weight: bold;
  font-size: 16px;
  box-shadow: inset 2px 2px 4px #b0bbc7, inset -2px -2px 4px #ffffff;
  border: 1px solid #b7c3cf;
  border-radius: 15px;
}
#dataTable td {
    background-color: #dce3ec;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  font-size: 15px;
  color: #4e5d6c;
  box-shadow: inset 2px 2px 5px #b0bbc7, inset -2px -2px 5px #ffffff;
  border: 1px solid #b7c3cf;
}


#download-button {
  margin-top: 40px;
  padding: 12px 24px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #5e6878;
  border: none;
  border-radius: 10px;
  background-color: #c1cad6;
  box-shadow: 5px 5px 10px #78889f, -5px -5px 10px #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

#download-button:active {
  box-shadow: inset 5px 5px 10px #78889f, -5px -5px 10px #ffffff;
}

button {
  background: #c1cad6;
  border-radius: 12px;
  box-shadow: 5px 5px 10px #78889f, -5px -5px 10px #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  color: #5e6878;
  border: none;
  cursor: pointer;
  margin: 5px;
  transition: all 0.3s ease;
}

button:active {
  box-shadow: inset 5px 5px 10px #78889f, inset -5px -5px 10px #ffffff;
}
