* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {  
    font-size: 25px bold !important;
    text-rendering: optimizelegibility;
     overflow-wrap: break-word;
    font-family:'Open Sans', sans-serif !important;
}
.containerS {
    width: 70%;
    margin: 50px auto;
    background-color: hsla(313, 77%, 74%, 0.938);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #0729c0;
}
h1 {
    text-align: center;
    margin-bottom: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 12px;
    text-align: center; 
    border: 1px solid white;
    width: 10px;
} 
input[type="number"] {
    width: 115px;
    padding: 8px;
    text-align: right; 
    border: 1px solid blue;
    border-radius: 4px;
}
.money-box {
    background-color: #eaf1f4;
}
.money-box:focus {
    outline: none;
    background-color: #f0f8ff;
}
button {
     background-color:blue;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}
button:hover { 
    background-color: rgb(141, 19, 172); 
}
.summary {
    text-align: center;
    margin-top: 20px;
}
.section {
    display: flex;
  }
  .section textarea{
    padding: 0px 5px;
  }  
 .Description{
    display: flex;
   }
   .Description textarea {
    display: flex;
    margin-top: 1px;
   }  
  textarea {
    width: 150%; 
    height: 31px; 
     border: 2px solid #ccc; 
    border-radius: 4px; 
    font-size: 16px; 
    font-family: Arial, sans-serif;
    resize: both; 
    box-sizing: border-box; 
  }  
  textarea:focus {
    border-color: #66afe9; 
    outline: none;
  } 
  textarea:focus {
    border-color: #66afe9; 
    outline: none; 
  }
  .section{
    display: flex;
  }
@media (max-width: 768px) {
    .container {
        width: 90%;
        margin: 20px auto;
    }
    table {
        font-size: 14px;
    }
    input[type="number"] {
        width: 80px;
        font-size: 14px;
    }
    button {
        padding: 8px 16px;
        font-size: 14px;
    }
    .summary {
        margin-top: 10px;
    }
   .containerS {
    width: 103%; 
}   
}
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 15px;
    }
    table {
        font-size: 12px;
    }
    input[type="number"] {
        width: 60px;
        font-size: 12px;
    }
    button {
        padding: 6px 12px;
        font-size: 12px;
    }
    h1 {
        font-size: 18px;
    }
    .summary {
        margin-top: 10px;
    }
    table, th, td{
        padding: 0px;
    }
  }
