body{
    font-family: 'Inter';
    margin: 0;
    overflow-x: hidden;
}

.page-title{
    font-size: 40px;
    border-bottom: 2px solid #000000;
}

.header{
    height: 100px;
    width: 100%;
    border-bottom: solid 2px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo{
    height: 100%;
}

.header-link{
    font-size: 27px;
    margin-left: 22px;
    text-decoration: none;
    color: black;
}

.header-link:hover{
    text-decoration: underline;
}

.leave-icon img{
    height: 75%;
}

.right-align{
    margin-left: auto;
}

.header-button{
    background-color: #C5E2FD;
    text-decoration: none;
    color: black;
    font-size: 20px;
    padding: 20px;
    border-radius: 17px;
    margin-right: 10px;
}

.header-button:hover{
    background-color: #abd3f8;
}

.sub-header{
    height: 50px;
    width: 100%;
    border-bottom: 1px solid #000000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.sub-header a{
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    margin-left: 29px;
    border-bottom: solid 1px #000000;
}

.add-button{
    position: fixed;
    right:100px;
    bottom: 60px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    text-decoration: none;
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 65px;
    height: 80px;
    width: 80px;
    border-radius: 50px;
    border: 3px solid black;
}

.add-button:hover{
    font-size: 70px;
    height: 90px;
    width: 90px;
    cursor: pointer;
}

.list-container{
    margin-top: 18px;
    width: 100%;
    height: 700px;
    overflow-Y: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.list-item{
    width: 95%;
    height: 70px;
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: #C5E2FD88;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.item-data{
    margin-left: 35px;
    font-size: 20px;
}

.status{
    margin-left: 38px;
    height: 20px;
    width: 110px;
    font-size: 16px;
    border-radius: 10px;
    text-align: center;
}

.SALES{
    background-color: #59DB5F;
}

.OPERATOR{
    background-color: #F48F32;
}

.MANAGER{
    background-color: #c9c9c9;
}

.item-button{
    border: none;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    height: 48px;
    border-radius: 10px;
    color: #000000;
    background-color: #D9D9D9;
    padding: 10px;
    margin-right: 30px;
}

.item-button:hover{
    background-color: #c4c4c4;
    cursor: pointer;
}

.blur{
    border: none;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
}

.popup{
    position: absolute;
    width: 50%;
    background-color: white;
    border-radius: 16px;
    border: 1px solid #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-right-align{
    display: flex;
    flex-direction: column;
    align-items: end;
    margin: 0;
    margin-top: 4px;
}

.flex-left-align{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0;
    margin-top: 4px;
}

.flex-center-align{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    margin-top: 4px;
}

.flex-row{
    display: flex;
    flex-direction: row;
}

form{
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-item{
    margin-bottom: 22px;
    margin-left: 20px;
}

form input{
    margin-left: 10px;
}

form input[type="text"], input[type="username"], input[type="password"], input[type="number"], select{
    font-family: 'Inter';
    font-size: 20px;
    border: 1px solid rgba(134, 134, 134, 0.651);
    background-color: rgba(217, 217, 217, 0.45);
    height: 30px;
    width: 300px;
    border-radius: 7px;
}

.currency{
    width: 80px !important;
    margin-left: 0px;
}

form input[type="number"]{
    text-align: center;
    width: 50px;
}

form input[type="checkbox"]{
    display: none;
}

.checkbox{
    margin-left: 10px;
}

.switch{
    position : relative ;
    display : inline-block;
    width : 50px;
    height : 30px;
    background-color: #ffffff00;
    border: 1px solid #000000;
    border-radius: 15px;
}

.switch::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #D9D9D9;
    top: 1px;
    left: 1px;
    transition: all 0.3s;
}

input[type="checkbox"]:checked + .switch::after {
    left : 20px; 
}
input[type="checkbox"]:checked + .switch {
    background-color: #C5E2FD;
}

.form-button{
    border: none;
    color: #000000;
    text-decoration: none;
    background-color: #C5E2FD;
    font-size: 20px;
    text-align: center;
    padding: 10px;
    border-radius: 14px;
    margin: 5px;
    margin-bottom: 5px;
}

.form-button:hover{
    background-color: #abd3f8;
    cursor: pointer;
}

.negative{
    background: transparent;
    border: #000000 solid 1px;
}

.negative:hover{
    background: #c5c5c575;
    cursor: pointer;
}

.button-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.inventory thead{
    border-bottom: 2px solid black;
}

.inventory thead th{
    position: sticky;
    top: 0;
}

.inventory th{
    font-size: 25px;
}

.inventory th:nth-child(odd) {
    background-color: #C5E2FD;
}

.inventory th:nth-child(even) {
    background-color: #ffffff;
}

.inventory tr{
    border-bottom: 1px solid grey;
}

.inventory tr:hover{
    background-color: #C5E2FD;
}

.inventory td{
    text-align: center;
    align-items: center;
    padding: 0;
    border-right: 1px solid grey;
}

.cart-button{
    position: fixed;
    z-index: 1;
    width: 100px;
    height: 100px;
    right: 25px;
    bottom: 25px;
    background-color: #F48F32;
    border-radius: 100px;
    align-items: center;
    border: none;
    padding: 0;
}

.cart-button img{
    height: 60px;
    margin-left: 0px;
    margin-top: 15px;
}

.cart-size{
    position: absolute;
    z-index: 1;
    width: 25px;
    height: 25px;
    right: 0px;
    top: 0px;
    background-color: #C5E2FD;
    border-radius: 100px;
    text-align: center;
    line-height: 25px;
    font-weight: bold;
}

.cart-list{
    display: block;
    max-height: 40vh;
    overflow-y: scroll;
}

.filter{
    padding: 5px;
}

.filter input{
    width: 175px !important;
    margin-right: 5px;
}

.number {
    width: 75px !important;
    margin-right: 5px;
}

.info-group{
    font-family: 'Inter';
    font-size: 18px;
}

.info-name{
    font-weight: bold;
}

.info-data{
    margin-left: 10px;
}

.tyre-info-link{
    color: black;
    text-decoration: none;
    height: 100%;
    width: 100%;
}

.page-choice-banner{
    width: 100%;
    height: 30px;
    border-bottom: 2px solid black;
    padding: 0;
    margin: 0;
}

.page-choice{
    background-color: white;
    font-size: 20px;
    text-align: center;
    border: none;
    width: 50%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-choice:hover{
    background-color: #C5E2FD;
    cursor: pointer;
}

.selected{
    background-color: #C5E2FD;
}

.settings-table td:nth-child(odd){
    text-align: right;    
}

.price-container{
    padding: 10px;
    border-radius: 25px;
    background-color: #daedff7e;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-container h1{
    border-bottom: solid 2px #000000;
}

.clear{
    background: none;
    border: none;
    box-shadow: none;
}

.clear:hover{
    cursor: pointer;
}

.add-item-button{
    background: none; 
    border: 3px solid rgb(202, 202, 202);
    color: rgb(112, 112, 112); 
    font-size: 20px; 
    font-weight: bold;
}

.add-item-button:hover{
    background-color: #e1e1e17b;
    cursor: pointer;
}

.progress-container {
    text-align: center;
    background-color: #a0a0a0; /* Set the background color of the container */
    padding: 2px;
    border-radius: 12px;
}

.progress-bar {
    width: 50%; /* Initial width, change as needed */
    background-color: #C5E2FD;
    height: 20px;
    border-radius: 10px;
}

.blank-input{
    background: transparent;
    border: none;
}

.blank-input:focus{
    border: none;
    outline: none;
}