/* ==== Body & Page Styling ==== */


/* ==== Main Container ==== */
.netcalc-container {
  max-width: 500px;
  margin: auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* ==== Title ==== */
h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #070707;
}

/* ==== Form Styling ==== */
form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* ==== Button ==== 

button {
  width: 100%;
  background-color: #007bff;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
*/


/* ==== Result Box ==== */
.netcalc-result {
  margin-top: 20px;
  background: #e9f7ef;
  padding: 15px;
  border-left: 4px solid #28a745;
  border-radius: 5px;
}

/* ==== Explanation Box ==== */
.netcalc-explanation {
  margin-top: 20px;
  background: #fffbea;
  padding: 15px;
  border-left: 4px solid #ffc107;
  border-radius: 5px;
  font-style: italic;
}

/* ==== Bill Status Highlight ==== */
.bill-status {
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 5px;
  display: inline-block;
}

.bill-status.red {
  color: #fff;
  background-color: #e74c3c; /* Red */
}

.bill-status.green {
  color: #fff;
  background-color: #2ecc71; /* Green */
}
