#brand-styling-form {
    max-width: 600px;
    margin: auto;
    padding: 0 15px;
    border: 1px solid #d3d3d3;
    border-radius: .5em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#brand-styling-admin-create-form {
    display: none;
    background-color: white;
    border-radius: 1em;
    border: 2px solid black;
    max-width: 1200px;
    max-height: 90%;
    padding-left: 2em;
    padding-right: 2em;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    overflow-y: auto;
}

#showCreateForm {
    background-color: rgb(85, 107, 47);
    border-color: rgb(85, 107, 47);
    color: white;
    border-radius: 0;
    line-height: 1.25em;
    padding: 4px 1.5em;
    cursor: pointer;
    font-weight: 700;
    border: 1px solid #a6a6a6;
    text-decoration: none;
}

#showCreateForm:hover {
    background-color: rgb(105, 127, 85);
}

#hideCreateForm,
.deleteButton {
    background-color: rgb(139, 0, 0);
    border-color: rgb(85, 107, 47);
    color: white;
    border-radius: 0;
    line-height: 1.25em;
    padding: 4px 1.5em;
    cursor: pointer;
    font-weight: 700;
    border: 1px solid #a6a6a6;
    text-decoration: none;
}

#hideCreateForm:hover,
.deleteButton:hover {
    background-color: rgb(159, 20, 20);
}

.optionsContainer .form-wrapper {
    color: red;
}