* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  height: 100vh;
  background: hsl(240, 100%, 7%);
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  ;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
h1{
  text-align: center;
  
  padding: 2rem;
  color: hsl(182, 93%, 84%);
}
h2{
  
  color: hsl(182, 93%, 84%);
}
.expense-input-container{
  display: grid;
  background-color: hsl(218, 100%, 12%);
  padding: 3rem;
  width: 400px;
  margin: 0 auto;
  justify-content: center;
  gap: 3rem;
  border: solid 2px hsl(208, 100%, 39%);
  border-radius: 10px;
  box-shadow: 5px 5px 1.5rem hsl(208, 100%, 39%);
}
input,select{
  padding: 10px;
  height: 2.5rem;
  width: 300px;
  border-style: none;
  border-radius: 10px;
  border: none;
}
button{
  justify-self: center;
  width: 100px;
}
input::placeholder,select{
  padding: 10px;
  color: black
}
select option {
  padding: 10px;
  background-color: #fff;
  color: #333;
}
select option:hover {
  background-color: #f0f0f0;
}
select option:checked {
  background-color: #007bff;
  color: white;
}
button{
  cursor: pointer;
  padding: 12px;
  border-radius: 10px;
  background-color: hsl(182, 100%, 85%);
  border: none;
  
}
button:hover{
  background: linear-gradient(to bottom,hsl(182, 100%, 55%),hsl(214, 100%, 45%));
  box-shadow: 5px 5px 1.5rem hsl(208, 100%, 39%);
}

.output-container {
  display: flex;
  justify-content: center;   
  align-items: flex-start;   
  gap: 3rem;                 
  margin: 5rem auto;
  width: 100%;               
  max-width: 1000px;
     
}      
.expense-output-container 
{
  background-color: hsl(218, 100%, 12%);
  padding: 2rem;
  width: 500px;
  border: solid 2px hsl(208, 100%, 39%);
  border-radius: 10px;
  color: white;
  box-shadow: 5px 5px 1.5rem hsl(208, 100%, 39%);
}
.expenseTable {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.expenseTable th, .expenseTable td {
  padding: 10px;
  border: 1px solid hsl(208, 100%, 39%);
}

.chart-container {
  background-color: hsl(218, 100%, 12%);
  padding: 2rem;
  width: 300px;
  border: solid 2px hsl(208, 100%, 39%);
  border-radius: 10px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 5px 5px 1.5rem hsl(208, 100%, 39%);

}

.chart-container canvas {
  max-width: 250px;
  max-height: 250px;
}
