body {
    font-family: 'Poppins', sans-serif;
    background-color: #F7F2EE;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.container {
    width: 1000px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.logo {
    width: 180px;
    margin: 30px auto;
    display: block;
}

h1 {
    margin-top: 50px;
    text-align: center;
}

.subheadline {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
}

form {
    margin-top: 50px;
}

.form-group {
    margin-top: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

select {
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px;
}

select:focus {
    border-color: #322b26;
}

::selection {
    background: #d8c4b4;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #322b26;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1b1918;
}

button[type="submit"] {
    margin-top: 30px;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.flex-container>div {
    flex: 1;
}

.flex-container .form-group {
    margin-bottom: 10px;
}

.line-items-container {
    margin-bottom: 20px;
}

.line-item {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    margin-top: 50px;
}

.line-item .form-group {
    display: flex;
    flex-direction: column;
}

.remove-line-item {
    grid-column: span 5;
    justify-self: start;
    align-self: center;
    padding: 10px;
}

.line-item>div {
    flex: 1;
}

.line-item .form-group {
    margin-bottom: 5px;
}

.line-item button {
    background-color: #dc3545;
    border: none;
    margin-top: 10px;
}

.line-item button:hover {
    background-color: #c82333;
}

.add-item-button,
.copy-address-button {
    margin-top: 10px;
}

#addLineItem {
    margin-bottom: 50px;
}

#cartCalculation {
    margin-top: 30px;
    font-weight: 700;
}

.no-border {
    border: 0;
}

.alternative-checkbox-container {
    display: flex;
    align-items: center;
}

.alternative-checkbox-container input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #ff8000;
    margin-right: 8px;
    cursor: pointer;
}

.alternative-checkbox-container label {
    font-size: 16px;
    margin-top: 4px;
    font-weight: 400;
    cursor: pointer;
}

/* Store switch */
.store-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    gap: 10px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: rgb(255, 255, 255);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #4CAF50;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.store-switch label {
    font-size: 18px;
    color: #333;
}

#loadOrder {
    margin-top: 10px;
}

@media screen and (max-width: 600px) {
    body {
        margin: 0;
    }

    .flex-container {
        display: block;
    }

    .line-item {
        grid-template-columns: 1fr;
    }

    .line-item button {
        grid-column: span 1;
    }
}