/* Gallery styling */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    padding: 6px;
    border: 1px solid #00a2ac;
}

.gallery-item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery-item form {
    margin: 0;
}

.item-buttons {
    position: absolute;
    top: 5px;
    right: 5px;
    left: 5px;
    width: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 5px;
}

.centered-form {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

input {
    width: 100%;
}

form,
.text-wrapper {
    position: relative;
}

#newBlogItemButton {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: green;
    border: 2px solid black;
}

.bordered-item {
    margin: 10px;
    border-radius: 10px;
    position: relative;
}

.bordered-item:nth-of-type(2n) {
    background-color: #f0f0f0;
}

