
/* Main layout */
.calculator-main {
  display: flex;
  justify-content: center;
  align-items: center;
  /*height: 100vh;*/
  padding: 20px;
}

.bmr-calculator-section {
  background: white;
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-label {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.input-field {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Results layout */
.input-stats p {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #555;
}

/* Buttons */
.calculate-button,
.clear-button,
.copy-button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.calculate-button:hover,
.clear-button:hover,
.copy-button:hover {
  background-color: #45a049;
}

/* Responsive layout */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }

  .bmr-calculator-section {
    padding: 15px;
  }

  .input-field {
    font-size: 0.9rem;
  }

  .calculate-button,
  .clear-button,
  .copy-button {
    padding: 10px;
    font-size: 0.9rem;
  }
}
