/* additional form CSS for search and add */

.form__added-details-container {
    max-height: 200px;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    overflow: auto;
}
.form__added-detail {
    width: 80%;
    margin: 2px;
    padding: 5px 10px;
    border: 1px solid black;
    border-radius: 3px;
    background-color: white;
    color: black;
}

.form__added-detail:hover {
    cursor: pointer;
}

.form__detail--name {
    font-weight: bold;
}

.form__detail-search {
    margin: 5px 0;
    height: auto;
    color: black;
}

/* additional CSS for usertypes-details admin */

.usertypes__details-holder {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    font-style: italic;
    border-top: darkgrey dotted 1px;
}

.usertypes__detail-name {
    width: auto;
    height: auto;
    font-size: 1em;
    font-weight: bold;
}
.usertypes__detail-row {
    width: 100%;
    height: 50px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.usertypes__details {
    width: 80%;
    height: 50px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.usertypes__detail-product {
    height: auto;
    padding: 0 5px;
    display: inline;
}

.usertypes__detail-qty {
    height: auto;
    padding: 0 5px;
    font-weight: bold;
}

.usertypes__detail-btn-holder {
    width: 90px;
    height: auto;
    justify-self: right;
    align-self: center;
}

.usertypes__detail-edit, .usertypes__detail-add, .usertypes__detail-delete {
    width: 36px;
    height: 36px;
    padding: 3px;
    border: 1px darkgrey solid;
    border-radius: 3px;
    font-size: 12px;
}

.usertypes__detail-title {
    font-weight: bold;
    text-align: center;
}