/*
 * SPRU Attachments
 * Source line breaks in the post remain authoritative. PHP restores a missing
 * <br> before inline attachments when phpBB drops it during BBCode rendering;
 * adjacent [attachment] BBCodes without a newline stay in the same visual row.
 */
.inline-attachment {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    margin: 3px 6px 3px 0;
}

.inline-attachment dl.thumbnail,
.inline-attachment dl.file {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    margin: 0;
}

.inline-attachment img.postimage {
    max-width: 100%;
    height: auto;
}

/* Do not turn the ordinary attachment block into a gallery. */
.attachbox > dd > dl.file,
.attachbox > dd > dl.thumbnail {
    display: block;
}

/* Posting/editor attachment manager. */
#file-list .attach-row .attach-name {
    position: relative;
}

.spru-attachment-preview {
    display: inline-flex;
    width: 72px;
    height: 54px;
    margin: 0 9px 5px 0;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #c9ced3;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.55);
    box-sizing: border-box;
}

.spru-attachment-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spru-attachment-tools {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin: 4px 0 0 0;
}

.spru-attachment-tools .button2 {
    margin: 0;
}

.spru-attachment-hide {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 3px;
    font-size: 11px;
    line-height: 1.2;
    cursor: pointer;
    user-select: none;
}

.spru-attachment-hide input {
    margin: 0;
}

.spru-attachment-status {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.25;
    color: #53616f;
}

.spru-attachment-status::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 5px 1px 0;
    border-radius: 50%;
    background: currentColor;
    opacity: .65;
}

.spru-attachment-status.is-inline,
.spru-attachment-status.is-url {
    color: #3b7150;
}

.spru-attachment-status.is-hidden {
    color: #8a6532;
}

.spru-attachment-status.is-copied {
    color: #3b7150;
}

@media (max-width: 700px) {
    .spru-attachment-preview {
        width: 62px;
        height: 46px;
    }

    .spru-attachment-tools {
        display: flex;
        margin-top: 6px;
    }
}

