body, html {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#more {
    width: 90%;
    max-width: 800px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 20px auto;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 50px;
    height: 800px;
    box-sizing: border-box;
}
#invoiceForm {
    height: 100%;
    width: 100%;
}
#invoiceForm label,
#invoiceForm select,
#invoiceForm input {
    font-size: 13px;
}
#itemsTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    table-layout: fixed;
}
#itemsTable th, #itemsTable td {
    border: 1px solid #ddd;
    text-align: left;
}
#itemsTable th:first-child, #itemsTable td:first-child {
    width: 5%; /* Ensure first column has a fixed small width */
    text-align: center;
}
#itemsTable th:not(:first-child), #itemsTable td:not(:first-child) {
    width: auto; /* Distribute remaining width equally among other columns */
}
#itemsTable input[type="text"], #itemsTable input[type="number"] {
    width: 100%; /* Make inputs take full width of their container */
    box-sizing: border-box; /* Include padding and border in element's total width */
}
input {
    border: 1px solid rgb(237, 237, 237);
    padding: 5px;
    outline: none;
}
#invoiceNum {
    font-size: 15px;
}
#invoiceForm h1 {
    color: rgb(66, 34, 207);
}
thead {
    background-color: rgb(255, 255, 255);
}
thead th {
    color: rgb(57, 57, 57);
    font-weight: 400;
    font-size: 11px;
}
.plusButt {
    width: 100%;
    border: none;
    background-color: rgb(247, 247, 247);
    color: rgb(70, 70, 70);
    border-radius: 5px;
    cursor: pointer;
}
.buttArea {
    align-items: center;
    text-align: center;
}
.submitButt {
    border: none;
    background-color: rgb(29, 134, 255);
    color: white;
    padding: 5px;
    font-size: 12px;
    width: 200px;
    cursor: pointer;
    border-radius: 5px;
}
.count {
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    color: gray;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}