body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
  }

  .red-input {
    color: red
  }

  .green-input {
    color: green
  }
  
  .calculator-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  h1, h2 {
    text-align: center;
    color: #333333;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  
  table, th, td {
    border: 1px solid #dddddd;
  }
  
  th, td {
    padding: 10px;
    text-align: center;
  }
  
  input[type="number"] {
    width: 60px;
    padding: 5px;
    text-align: center;
  }

  .reset-button{
    background-color: darkgrey
  }

  .reset-button:hover{
    background-color: grey
  }
  
  button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }

  .button-row {
    display: flex;
    gap: 10px; /* Space between the buttons */
    margin-top: 20px; /* Adds gap from the top */
  }

  
  button:hover {
    background-color: #0056b3;
  }
  
  #results {
    margin-top: 20px;
    background: #e9ecef;
    padding: 15px;
    border-radius: 5px;
  }
  
  #output {
    color: #333333;
    font-size: 16px;
  }
  