body {
    padding-left: 5px;
    padding-right: 5px;
    overflow-y: scroll;
}

/* alphabet */

.alphabet {
    margin: 0 auto;
    margin-bottom: 20px;
    height: 50px;
    display: flex;
    overflow-y: auto;
    align-items: baseline;
}

.alphabet-item {
    height: 30px;
    border-radius: 5px;
    border: 1px solid grey;
    cursor: pointer;
    margin: 2px;
    float: left;
    padding: 3px;
    font-size: 1rem;
}

.alphabet .noentries {
    background-color: rgb(250, 250, 250);
    color: darkgray;
    cursor: default;
    font-size: 1rem;
}

.alphabet-item-active {
    background-color: rgb(101, 150, 255);
    color: white;
}

.alphabet-item span {
    height: inherit;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: inline-flex;

    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;

    align-items: center;
}

/* recipe list */

.card-header {
    height: 35px;
    padding: 0px;
}

.card-header .author {
    font-size: 60%;
    font-style: italic;
    color: gray;
    line-height: 35px;
    margin-right: 10px;
}

#recipesListContainer,
#recipeNewContainer {
    padding: 0px;
}

.recipe {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}

.recipe-description-container,
.recipe-content-container,
.recipe-pictures-container,
.recipe-title-container,
.recipe-description-container,
.recipe-content-container,
.recipe-tags-container,
.recipe-pictures-container {
    margin-bottom: 30px;
}

.recipe-description-container h6,
.recipe-content-container h6,
.recipe-pictures-container h6,
.recipe-title-container h6,
.recipe-description-container h6,
.recipe-content-container h6,
.recipe-tags-container h6,
.recipe-pictures-container h6 {
    border-bottom: 1px dashed silver;
}

.recipe .pictureList {
    text-align: center;
}

.recipe .pictureList img {
    margin-top: 10px;
    margin-right: 10px;
    border: 1px inset #ddd;
    padding: 5px;
    background-color: silver;
}

.recipe .pictureList .pictureUpdate {
    width: fit-content;
}

#recipeNew button {
    padding-top: 3px;
}

#recipe-new-title {
    height: 25px;
    padding: 0px;
    padding-left: 3px;
    margin-bottom: 10px;
}

#recipe-new-description {
    height: 150px;
    padding: 0px;
    padding-left: 3px;
    margin-bottom: 10px;
}

#recipe-new-content {
    height: 150px;
    padding: 0px;
    padding-left: 3px;
    margin-bottom: 10px;
}

.recipe-update-title {
    height: 25px;
    padding: 0px;
    padding-left: 3px;
    margin-bottom: 10px;
    width: -webkit-fill-available;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.recipe-update-description {
    height: 150px;
    padding: 0px;
    padding-left: 3px;
    margin-bottom: 10px;
}

.recipe-update-content {
    height: 150px;
    padding: 0px;
    padding-left: 3px;
    margin-bottom: 10px;
}

.pictureArea {
    margin-top: 15px;
    padding: 0px;
}

.croppie-container {
    margin-top: 30px;
    padding-top: 20px;
    border: 1px dashed silver;
    margin-bottom: 30px;
}

#pictureRotate,
#pictureDestroy {
    margin-left: 5px;
    border: none;
    color: grey;
}

.recipe-header {
    display: flex;
    justify-content: space-between;
}

.recipe-title {
    overflow: auto;
    text-align: left;
}

.recipe-controls {
    float: right;
    max-width: 230px;
    min-width: 105px;
    height: 35px;
    white-space: nowrap;
}

.recipe-link,
.recipe-remove,
.recipe-clone,
.recipe-edit {
    padding: 3px;
    margin-top: 3px;
}

.tagsListContainer {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 10px;
    height: 30px;
    display: flex;
    overflow-y: auto;
    align-items: baseline;
}

.tagsHeadList {
    float: left;
}

.tag-list-item {
    border-radius: 5px;
    border: 1px solid grey;
    cursor: pointer;
    margin-right: 5px;
    margin-left: 5px;
    float: left;
    padding: 3px;
    color: #495057;
    background-color: rgb(250, 250, 250);
    font-size: small;
    font-style: oblique;
}

.tag-list-item.active {
    background-color: rgb(101, 150, 255);
    color: white;
}

.tag-delete-item {
    display: block;
    width: 20px;
    height: 20px;
}

.tag-new {
    border-radius: 5px;
    border: 1px solid grey;
    margin-top: 0px;
    padding: 3px;
    color: #495057;
    background-color: rgb(250, 250, 250);
    font-size: small;
    font-style: oblique;
    width: 180px;
    float: right;
}