html, body {
    height: 100%;
    width: 100%;
}

#logo-container {
    background-color: #9C5E92;
}

#mainPage {
    color: white;
    background: #9C5E92;
    padding: 20px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mainPage.clip-background {
    clip-path: polygon(0 0,100% 0,100% 75%,0% 100%);
    min-height: 50%;
}

#mainPage > * {
    max-width: 1000px;
    width: 100%;
}

#mainPage > *:last-child {
    padding-bottom: 100px;
}

#footerContent {
    font-size: 7.5pt;
}

.webshop-item {
    width: 85%;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4F254B;
}

.btn {
    background-color: #4F254B;
}

.btn:hover {
    background-color: #F5E7D5;
    color: #4F254B;
}

.input-field > label {
    color: #d2b8b8;
}

#leden-container {
    color: #4F254B;
}

#leden-container .collapsible-body {
    background-color: white;
}

#leden-container .collapsible-body *:not(a):not(i) {
    color: #4F254B;
}

input[type=text], input[type=email], input[type=number], textarea {
    color: white;
}

.toast-error {
    color: red;
}

.prijsHeader, .prijsCell, .voorraadHeader, .voorraadCell, .deleteHeader, .deleteCell {
    width: 70px;
}

.deleteProduct, .incrementTeller, .clearTeller, .tellerAmount {
    cursor: pointer;
    color: #4F254B;
}

#webshopModal input, #addLidModal input {
    color: #4F254B;
}

@media screen and (max-width: 1040px) {
    .webshop-item {
        width: 60%;
    }
}