/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 09 2025 | 07:39:44 */
/* Calculator Card */
.calculator {
  width: 100%;
  max-width: 520px;
  margin: 30px auto;
  padding: 20px 25px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  font-family: 'Arial', sans-serif;
}

/* Header */
.calculator h1 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #222;
}

/* Parent Cards */
.parent {
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  border-left: 5px solid #007bff;
  transition: transform 0.2s;
}

.parent:hover {
  transform: translateY(-2px);
}

/* Parent Titles */
.parent h3 {
  margin: 0 0 10px 0;
  font-size: 1rem;
  color: #007bff;
}

/* Labels */
label {
  display: block;
  margin: 5px 0 3px 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

/* Select dropdowns */
select {
  width: 100%;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

select:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
  outline: none;
}

/* Calculate Button */
button {
  width: 100%;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  background: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

/* Result Box */
.result {
  margin-top: 15px;
  padding: 12px 15px;
  border-radius: 10px;
  background: #f1f1f1;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  white-space: pre-line;
}
