* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    font-family: sans-serif;
    background-color: #ffffff;
}

.container {
    margin: 0;
    padding: 0;
    background-color: #C4C4C4;
    width: 100vw;
    height: 100vh;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
}

h1 {
    font-weight: bold;
}

h2 {
    position: relative;
    right: 115px;
    top: -20px;
}

p {
    position: relative;
    right: 185px;
    top: 0px;
    font-size: 18px;
}

.user-icon img {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logout-icon img {
    position: relative;
    right: -25px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: right;
}

.back-arrow-icon img {
    position: relative;
    left: 158px;
    right: 0px;
    width: 26px;
    display: flex;
    justify-content: right;
}

.edit-icon img {
    position: relative;
    left: 165px;
    right: 0px;
    width: 27px;
    display: flex;
    justify-content: right;
}

.euro-icon img {
    position: relative;
    left: 170px;
    right: 0px;
    width: 30px;
    display: flex;
    justify-content: right;
}

.code-input {
    width: 260px;
    height: 30px;
    border-radius: 10px;
    border: 1px solid #909090;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.drink-input {
    width: 310px;
    height: 150px;
    border-radius: 10px;
    border: 1px solid #909090;
    margin-top: 5px;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 0px;
    overflow: hidden;
    font-size: 20px;
    line-height: 1.5;
    background-color: #ffffff;
    position: relative;
    font-family: Arial, sans-serif;
}

.drink-text {
    position: absolute;
    top: -20px;
    left: -90px;
}

.total {
    width: 310px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #909090;
    margin-top: 5px;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 0px;
    overflow: hidden;
    font-size: 20px;
    line-height: 1.5;
    background-color: #ffffff;
    position: relative;
    font-family: Arial, sans-serif;
}

.total-text {
    position: absolute;
    top: -27px;
    left: -90px;
}

.total-text img {
    width: 25px;
    position: absolute;
    right: -35px;
    bottom: 62px;
}

.numpad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.number {
    width: 80px;
    height: 60px;
    font-size: 20px;
    border-radius: 10px;
    border: 1px solid #909090;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.backspace {
    border-radius: 10px;
    border: 1px solid #909090;
    grid-column: span 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.backspace img {
    width: 30px;
    height: 30px;
    display: flex;
    margin: auto;
}

.user {
    font-size: 13px;
    position: relative;
    top: 10px;
    right: -100px;
    margin: 0;
}

.table-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;  
}

.drink-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;  
    margin-left: 55px;
}

.table {
    font-size: 10px;
    width: 150px;
    height: 65px;
    font-size: 20px;
    border-radius: 10px;
    border: 1px solid #909090;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drink {
    width: 120px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #909090;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 13x;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drink-category {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: -290px;
}

.drinkcat {
    width: 45px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #909090;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.drinkcat img {
    width: 30px;
}

