.content {
    padding-bottom: 50px;
}

.create-item-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: fit-content;
    margin: 0 auto;
}

.image-container {
    height: 300px;
    width: 300px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #e2e2e2;
    background-position: center;
    background-size: cover;
}

.image-container:hover,
.add-input-container .material-symbols-outlined:hover {
    background-color: #cfcfcf;
    cursor: pointer;
}

.image-container .material-symbols-outlined {
    font-size: 124px;
}

.gallery-container {
    text-align: center;
    padding: 20px;
}

.gallery-selected-display {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gallery-selected-picture {
    min-height: 110px;
    min-width: 110px;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
}

.div-button {
    background-color: #e2e2e2;
    padding: 16px 12px;
}
.div-button:hover {
    background-color: #cfcfcf;
    cursor: pointer;
}

.status-text {
    color: #fbfbfb;
    background-color: #fb3c41;
    padding: 6px 24px;
    transition: all .3s ease;
}

.fresh-status-error {
    background-color: #cc2127;
    transition: all .3s ease;
}

.location-wrap {
    width: 100%;
    text-align: center;
}

.add-input-container {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.add-input-container .material-symbols-outlined {
    font-size: 32px;
    background-color: #e2e2e2;
    padding: 4px 8px;
}

.location-wrap p {
    color: rgb(52, 199, 89);
    text-align: right;
}

#new-location-notifier {
    display: none;
}

#comment-input,
input,
.gallery-container,
.location-wrap p {
    width: 80%;
    margin: 0 auto;
}

.tag-chain {
    gap: 10px;
}

.tag-chain li {
    background-color: rgb(50, 173, 230);
    border-radius: 10px;
}

.tag-chain li:not(:last-child) {
    margin-right: 10px;
}

.hidden-container {
    display: none;
}

.delete-button {
    background-color: rgb(255, 59, 48) !important;
}

.delete-button:hover {
    background-color: rgb(245, 35, 53) !important;
}

button:hover {
    cursor: pointer;
}

.input-error,
.input-error:hover,
.input-error:focus,
.input-error:active {
    background-color: rgba(224, 224, 224, 0.8);
}

input[type=text],
textarea {
    font-size: 1.125rem;
    padding: 8px;
}