/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: Arial, sans-serif; 
    background-color: #f9f9f9;
    font-size: 25px bold !important;
    text-rendering: optimizelegibility;
     overflow-wrap: break-word;
    font-family:'Open Sans', sans-serif !important;
}*/

.container {
    width: 100%;
    /*margin: 50px auto;*/
    /* background-color: #fff; */
    /* background-color: #1ea47e; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: hsla(313, 77%, 74%, 0.938);*/
    padding: 20px;
    border-radius: 8px;
    
    color: #0729c0;
}
button a{
    padding: 10px 20px;
    background-color:blue;
    color: white;
    border: none;
    cursor: pointer;
  }
     button:hover a{
    background-color: rgb(141, 19, 172); 
  }
h1 {
    text-align: center;
    /* margin-bottom: 20px; */
    padding: 0px 0px 0px 0px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    /* border: 1px solid white; */
    width: 10px;
} 

input[type="number"] {
    width: 95px;
    padding: 8px;
    text-align: right;
    border-radius: 4px;
    border: 1px solid #ddd; 
    /* border: 1px solid blue; */
    
}

.money-box {
    /* background-color: #eaf1f4; */
}

.money-box:focus {
    outline: none;
    /* background-color: #f0f8ff; */
}

button {
    /* background-color: #4CAF50; */
    background-color:blue;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}
button:hover {
    /* background-color: #45a049; */
    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;
   }
   /* .new hr{
    border: default;
  } */
  textarea {
    width: 150%; /* Make the textarea take the full width of its parent */
    height: 31px; /* Set a fixed height */
   /*  padding: 10px; Add some padding inside the textarea */
    font-size: 16px; /* Set font size */
    font-family: Arial, sans-serif; /* Choose a font */
    resize: both; /* Allow the user to resize the textarea */
  }
  
  .section{
    display: flex;
  }



/* Media Queries for Responsiveness */
@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;
    }
     button a{
        padding: 0px 0px;
     
    }

    .summary {
        margin-top: 10px;
    }
    #amount{
  padding-left: 154px;
 }
 #count{
  padding-left: 154px;
 }
 #discount{
  padding-left: 154px;
 }
 #tax{
  padding-left: 154px;
 }
 #total{
  padding-left: 154px;
 }
 #balance{
  padding-left: 154px;
 }
  .form-section {

  display: flex;
  gap: 40px;
}
body{
  overflow-x: hidden;
}
  .container {
    padding: 10px;
  }

  /* table th, table td {
    font-size: 14px;
    padding: 4px;
  } */

  #item-form {
    flex-direction: column;
    align-items: center;
  }
 
  /* #item-form input {
    width: 100%;
    margin-bottom: 10px;
  } */

  /* button {
    width: 100%;
  } */
}

@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;
    }
  }
