div.libraryEntry {
    padding: 10px;
}

div.libraryEntryFirstLine {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

div.libraryEntrySecondLine {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 70%;
    margin-top: 5px;
}

div.libraryDeleteIconBlock {
    width: 20px;
    height: 20px;
}

div.libSection {
    border: 3px solid rgb(240, 240, 240);
    border-radius: 5px;
    margin: 10px;
}

div.libButton {
    color: #3b3535;
    font-variant: small-caps;
    font-size: large;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 1rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}

input.formInput {
    display: inline-block;
    min-width: 20rem;
    height: 1rem;
}

textarea.formInput {
    display: inline-block;
    min-width: 20rem;
}

input.formInputFile {
    display: inline-block;
    min-width: 16rem;
    height: 1rem;
    margin-right: 1rem;
}

label.formLabel {
    display: inline-block;
    min-width: 12rem;
    max-width: 12rem;
    padding-right: 10px;
}

div.tableBlock {
    display: flex;
    padding: 10px;
}

div.tableBlockHelp {
    font-size: small;
    margin: -5px 10px 10px;
    border: 1px solid gainsboro;
    border-radius: 5px;
    background-color: #dbf5d6;
    width: 90%;
    display: flex;
    padding: 10px;
    justify-content: space-between;
}

div.optionalTag {
    font-size: small;
    color: gray;
}

div.requiredTag {
    font-size: small;
    color: darkred;
}

select.langInput {
    width: 15rem;
    height: 1.6rem;
}

select.booleanInput {
    width: 10rem;
    height: 1.6rem;
}

select.srInput {
    width: 10rem;
    height: 1.6rem;
}

div.helpBlock {
    font-size: small;
    color: gray;
    margin-top: 5px;
}

a.libTableLink {
    text-underline-offset: 2px;
    display: inline-block;
    max-width: 400px;
    overflow-wrap: break-word;
}

img.arrow {
    cursor: pointer;
    margin-top: 5px;
    opacity: 0.5;
    height: 36px;
    width: 36px;
    margin-left: 10px;
}

div.mainContainer {
    max-width: 700px;
    width: 70%;
    margin: 1rem auto;
    text-align: center
}

textarea.descriptionArea {
    width: 20rem;
}

div.descriptionAreaText {
    width: 20rem;
}

div.privateAndPublic {
    font-variant: small-caps;
    font-size: large;
    margin-bottom: 1rem;
}

div.aboutBtn {
    font-variant: normal;
    font-size: small;
    cursor: pointer;
    color: darkgreen;
    margin-top: 4px;
    border: 1px solid gainsboro;
    border-radius: 3px;
    padding: 3px;
    width: 5rem;
}

span.filterTextLong {
    display: inline;
}

span.filterTextShort {
    display: none;
}

div.badEntryInfo {
    display: none;
    color: #c01e1e;
    font-size: small;
    padding-right: 30px;
    margin-top: 5px;
}

@media (max-width: 900px) {
    input.formInputFile {
        min-width: 10rem;
    }

    input.formInput {
        min-width: 10rem;
    }

    textarea.formInput {
        min-width: 10rem;
        max-width: 10rem;
    }

    select.langInput {
        width: 10rem;
    }
}

div.statsBlockContainer {
    margin-bottom: 2rem;
    border: 1px solid lightgray;
    border-radius: 10px;
    padding-right: 10px;
}

div.statsBlock {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 10px;
    margin-bottom: 20px;
}

div.statsBlockLabel {
    color: gray;
    width: 30%;
    text-align: left;
    font-variant: small-caps;
}

div.statsBlockValue {
    text-align: left;
    width: 70%;
    font-size: 12px;
}

@media (max-width: 600px) {
    span.filterTextLong {
        display: none;
    }

    span.filterTextShort {
        display: inline;
    }

    div.mainContainer {
        width: 100%;
        margin: 1rem auto;
        text-align: center;
    }

    input.formInput {
        min-width: 8rem;
        max-width: 8rem;
    }

    textarea.formInput {
        min-width: 8rem;
        max-width: 8rem;
    }

    input.formInputFile {
        min-width: 6rem;
        max-width: 6rem;
    }

    select.langInput {
        width: 8rem;
    }

    select.booleanInput {
        width: 8rem;
    }

    textarea.descriptionArea {
        width: 12rem;
    }

    div.descriptionAreaText {
        width: 12rem;
    }

    div.privateAndPublic {
        display: none;
    }

    a.libTableLink {
        max-width: 300px;
        font-size: small;
    }

    div.tableBlockHelpText {
        overflow-wrap: break-word;
        width: 300px;
    }
}