.label-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 7vh;
    width: 100vw;
    height: 93vh;
}

.label-search {
    display: grid;
    grid-template-columns: auto auto auto auto;
    place-content: center;
    gap: 2.5vw;
    height: 50vh;
    width: 100vw;
    background-color: rgb(255, 65, 65);
    color: white;
}

.search {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: .5em;
}

.label-result {
    margin-top: 2em;
    display: grid;
    grid-template-columns: auto auto;
    gap: 2.5vw;
    place-content: center;
}

.label-input {
    width: 100vw;
    height: 50vh;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    display: block;
}

.label-container {
    display: inline-block;
    white-space: nowrap;
}

.label-card {
    display: inline-block;
    background-color: rgb(255, 65, 65);
    color: white;
    height: 40vh;
    height: fit-content;
    width: 17vw;
    padding: 1vw;
    margin: 2em 2em;
    font-size: .75em;
}

.label-card table tbody tr td,
.label-card table thead tr th {
    border: solid 1px;
    padding: 2px;
}

.label-card table {
    border-collapse: collapse;
}

.label-title img {
    height: 35vh;
    width: fit-content;
}

.label-title h1 {
    margin-bottom: .25em;
}

.dataframe {
    width: 15vw;
    text-align: center;
    color: white;
    border: white;
}

.dataframe th {
    text-align: center;
}

.edit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2em;
}

.edit form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-box {
    height: 1.5em;
}

.input-box {
    font-size: 1.25em;
    padding-bottom: .5em;
}

.edit-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: fit-content;
}

#id_name {
    width: 16vw;
    margin-top: .5em;
    margin-bottom: 1em;
}

#id_description {
    margin-top: .5em;
    width: 16vw;
    height: 10vh;
    resize: none;
}

.edit form button {
    font-size: 1.5em;
    margin-top: 1em;
    height: fit-content;
    width: fit-content;
    padding: .25em;
    background-color: black;
    color: white;
    border: solid black 4px;
    border-radius: 8px;
    cursor: pointer;
}

.go {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    margin-top: .5em;
    width: fit-content;
    height: fit-content;
    padding: .25em;
    background-color: black;
    color: white;
    border: solid black 4px;
    border-radius: 8px;
    cursor: pointer;
}