#life_path body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: #333;
}

/* Calculator Container */
.calculator_lp {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 700px;
  width: 100%;
}

/* Heading */
h1 {
  /*font-size: 28px;
  margin-bottom: 10px;
  color: #2c3e50;
  font-weight: 600;*/
}

/* Paragraph */
p {
  /*font-size: 14px;
  color: #666;
  margin-bottom: 20px;*/
}

/* Input Group */
.input-group_lp {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.input-group_lp input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  text-align: center;
  transition: border-color 0.3s ease;
}

.input-group_lp input:focus {
  border-color: #0a663a;
  outline: none;
}

.input-group_lp input::placeholder {
  color: #aaa;
}

/* Button 
#lp button {
  width: 100%;
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2980b9;
}*/

/* Result Section */
.result {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #2c3e50;
  padding: 15px;
  border-radius: 8px;
  background-color: #ecf0f1;
  display: none; /* Hidden by default */
}
