@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    color: #ffffff;
    font-family: "Jost", sans-serif;
    font-weight: 400;
}

body {
    background-color: #000000;
    padding: 24px;
}

header {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: space-between;
}

a {
    text-decoration: none;
}

.back-btn {
    border: none;
    height: 48px;
    width: 48px;
    font-size: 32px;
    color: #000000;
}

.clear-btn {
    border: none;
    height: 48px;
    font-size: 32px;
    color: #000000;
    width: 112px;
}

br {
    height: 24px;
}

form {
    display: flex;
    flex-direction: column;
}

button {
    transition: 0.2s;
}

.platzhalter-img {
    height: 160px;
    width: 160px;
    cursor: pointer;
}

.new-product-container {
    display: flex;
}

.new-product-input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

input {
    color: #000000;
    font-size: 32px;
    border: none;
}

.name-input {
    height: 50%;
}

.image-input {
    display: none;
}

.products {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.products h1 {
    text-align: center;
}

.product-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

.product {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.product img {
    width: 100%;
    height: auto;
}

.new-category-container {
    height: 48px;
    width: 100%;
    display: flex;
}

.new-category-container input {
    width: 70%;
    border: none;
}

.add-btn {
    width: 15%;
    border: none;
    background-color: #199a06;
    font-weight: 900;
    font-size: 22px;
}

.remove-btn {
    width: 15%;
    border: none;
    background-color: #df2929;
    font-weight: 900;
    font-size: 22px;
}

.count-container {
    background-color: #4a4a4a;
    display: flex;
    height: 48px;
}

.count-btn {
    width: 33%;
    border: none;
    color: #4a4a4a;
    font-weight: 900;
    font-size: 22px;
    cursor: pointer;
}

.del-btn {
    width: 100%;
    background-color: #df2929;
    color: #ffffff;
    border: none;
    font-weight: 900;
    font-size: 22px;
    cursor: pointer;
}

.confirm-btn {
    width: 100%;
    border: none;
    background-color: #199a06;
    color: #ffffff;
    font-weight: 900;
    font-size: 22px;
    text-align: center;
    cursor: pointer;
}

.category-dropdown {
    width: 100%;
    height: 48px;
    border: none;
    color: #4a4a4a;
    font-weight: 900;
    font-size: 22px;
    cursor: pointer;
}

.category-dropdown option {
    width: 100%;
    height: 48px;
    border: none;
    color: #4a4a4a;
    font-weight: 900;
    font-size: 22px;
    cursor: pointer;
}

.count-container span {
    width: 34%;
    text-align: center;
    font-size: 34px;
    height: 48px;
    font-weight: 700;
}