/* Prevent the title/details blocks from visually merging on mobile */
@media (max-width: 768px) {
    #column_right_top {
        position: relative !important;
        margin-bottom: 2px !important;
        padding-bottom: 0 !important;
        z-index: 2 !important;
    }

    #column_right_second {
        position: relative !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        clear: both !important;
        z-index: 1 !important;
    }

    #column_right_top > .element {
        margin-bottom: 0 !important;
    }

    #column_right_second > .element {
        margin-top: 0 !important;
    }

    #column_right_top .pf-body {
        padding-bottom: 0 !important;
    }

    #column_right_second .pf-body {
        padding-top: 0 !important;
    }
}

/* Base edit button */
.edit-listing.top-right-button {
    position: absolute !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    background: rgba(255,255,255,.94) !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 5px !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.12) !important;
    color: #07111f !important;
    font-size: 19px !important;
    line-height: 1 !important;
    z-index: 50 !important;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease !important;
}

.edit-listing.top-right-button i {
    font-size: 19px !important;
    line-height: 1 !important;
    color: inherit !important;
}

.edit-listing.top-right-button:hover {
    color: var(--accent) !important;
    background: #fff !important;
    border-color: var(--accent) !important;
    box-shadow: 0 5px 16px rgba(0,0,0,.18) !important;
}

/* Desktop/tablet: keep edit button on title block */
.edit-listing.top-right-button.desktop-title-edit {
    top: 10px !important;
    right: 20px !important;
}

/* Mobile: move edit button to top-right of gallery */
@media (max-width: 768px) {
    .edit-listing.top-right-button.mobile-gallery-edit {
        top: 10px !important;
        right: 10px !important;
        left: auto !important;
        bottom: auto !important;
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        background: rgba(255,255,255,.96) !important;
        z-index: 100 !important;
    }

    .edit-listing.top-right-button.mobile-gallery-edit i {
        font-size: 18px !important;
    }
}