* {
    box-sizing: border-box;
  }
  
  body,
  html {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    max-height: 100vh;
    background-color: #9cb4db;
  }
  
  .body {
    display: grid;
    grid-template-columns: 0.8fr 4fr 1fr;
    grid-template-areas: "leftt middlle rightt";
  }
  
  .left-con {
    grid-area: leftt;
    margin: 0 1rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    justify-content: center;
  }
  
  #currency {
    margin-bottom: 1rem;
  }
  
  .middle-con {
    grid-area: middlle;
    margin-right: 1rem;
  }
  
  .right-con {
    grid-area: rightt;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .next-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  #inputScreen {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    width: 100%;
    height: 100%;
    visibility: hidden;
  }
  
  .inputCon {
    background-color: honeydew;
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-radius: 15px;
    border: black 1px solid;
    box-shadow: black 2px 1px 3px;
    padding: 20px;
    z-index: 1;
    visibility: hidden;
  }
  
  table > input {
    width: 100px;
  }
  
  .inputCon > input {
    width: 95%;
    margin: 10px 0;
    border-radius: 15px;
  }
  
  .x {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 16px;
    text-align: center;
    z-index: 1;
  }
  
  .x::before {
    content: "";
    background-color: red;
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 5px;
    left: -6px;
    top: -6px;
    z-index: -1;
    cursor: pointer;
    transform: scale(0, 1);
    transition: 250ms;
    border: rgb(7, 7, 7) solid 1px;
    border-radius: 8px;
  }
  
  .x:hover::before {
    cursor: pointer;
    transform: scale(1);
  }
  
  .x:hover {
    z-index: 1;
    color: white;
    cursor: pointer;
  }
  
  #button {
    margin-bottom: 5rem;
  }
  
  .calender {
    padding-bottom: 3rem;
    background-color: #b5dde6;
    border-radius: 15px;
    border: rgb(78, 78, 78) solid 1px;
  }
  
  .clear-con {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }
  
  #clear {
    text-decoration: none;
    color: rgb(78, 78, 78);
    position: relative;
    z-index: 1;
  }
  
  #clear:hover {
    color: white;
  }
  
  #clear::before {
    content: "";
    background-color: rgb(0, 0, 255);
    width: 100%;
    top: -7px;
    left: -6px;
    height: 100%;
    padding: 0.5rem;
    position: absolute;
    border-radius: 15px;
    box-shadow: black 0 0 5px;
    z-index: -1;
    transform: scale(0);
    transition: ease-out 250ms;
  }
  
  #clear:hover::before {
    transform: scale(1);
    
  }
  
  table {
    margin-top: 100px;
  }
  
  table,
  th,
  td {
    text-align: center;
    margin: 10px 10px 0 10px;
    border: black 1px solid;
    border-collapse: collapse;
  }
  
  .saving,
  .monthlySaving,
  .yearSaving {
    width: 200px;
    height: 150px;
    background-color: #b5dde6;
    border-radius: 15px;
    border: black solid 2px;
    text-align: center;
    line-height: 5px;
  }
  
  .active {
    background-color: #abc7be;
  }
  
  .dateCon {
    background-color: #b5dde6;
    border: black solid 2px;
    border-radius: 15px;
    padding: 0 10px 0 10px;
  }
  
  .salaryCon {
    display: flex;
    justify-content: center;
  }
  
  #textBills {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  
  .newbutton {
    position: absolute;
    left: 40%;
    margin-top: -20px;
    transition: 250ms;
    color: rgb(80, 80, 80);
  }
  
  .newbutton:hover {
    color: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 2;
  }
  
  .newbutton::before {
    transform: scale(0);
    transition: 250ms;
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    padding: 10px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 5px;
    background-color: rgb(45, 30, 255);
    cursor: pointer;
    box-shadow: black 0 0 6px;
  }
  
  .newbutton:hover::before {
    transform: scale(1);
  }
  
  .currency {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  
  .currency label {
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
  }

  .button {
    background-color: rgb(20, 125, 167); /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 5px;
  }

  .button:hover {
    background-color: #092f3b;
    color: white;
  }