/* Add general styles for the calculator */

.container {
    text-align: center;
    margin-top: 20px;
  }
  
  .row {
    margin-bottom: 10px;
  }
  
  .button {
    width: 50px;
    height: 50px;
    background-color: #e4e4e4;
    color: #333;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #ccc;
  }
  
  .operator {
    background-color: #fcbf49;
    color: #fff;
  }
  
  .operator:hover {
    background-color: #eaa835;
  }
  
  .equalBtn {
    background-color: #34a853;
    color: #fff;
  }
  
  .equalBtn:hover {
    background-color: #2d8b47;
  }
  
  /* Add additional styles as needed */
  
  h1.calc {
    text-align: center;
    margin-top: 50px;
    font-size: 24px;
  }
  
  input#inputBox {
    width: 200px;
    height: 40px;
    font-size: 20px;
    text-align: right;
    padding: 5px;
  }
  