.inline-attachment-dropzone {
    align-items: center;
    background: rgba(var(--bs-primary-rgb), 0.05);
    border: 1px dashed rgba(var(--bs-primary-rgb), 0.35);
    border-radius: var(--bs-border-radius);
    color: var(--bs-secondary-color);
    cursor: pointer;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1rem;
    text-align: center;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.inline-attachment-dropzone:hover,
.inline-attachment-dropzone.is-dragover {
    background: rgba(var(--bs-primary-rgb), 0.12);
    border-color: rgba(var(--bs-primary-rgb), 0.7);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.12);
    color: var(--bs-primary);
}

.inline-attachment-dropzone.disabled,
.inline-attachment-dropzone[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
}

.inline-attachment-dropzone-copy {
    font-size: 0.875rem;
    font-weight: 500;
}

.inline-attachment-dropzone-note {
    color: var(--bs-secondary-color);
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 0.1rem;
}